diff --git a/grammar.js b/grammar.js index 8c12789..c5880cc 100644 --- a/grammar.js +++ b/grammar.js @@ -1332,14 +1332,17 @@ module.exports = grammar({ )), // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 - comment: _ => token(choice( - seq('//', /(\\+(.|\r?\n)|[^\\\n])*/), + comment: $ => choice( seq( - '/*', - /[^*]*\*+([^/*][^*]*\*+)*/, - '/', + field('start', '//'), + field('content', alias(/(\\+(.|\r?\n)|[^\\\n])*/, $.comment_content)) ), - )), + seq( + field('start', '/*'), + field('content', alias(/[^*]*\*+([^/*][^*]*\*+)*/, $.comment_content)), + field('end', '/') + ), + ), }, supertypes: $ => [ diff --git a/src/grammar.json b/src/grammar.json index 6d76519..598ae93 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -9473,42 +9473,69 @@ } }, "comment": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "start", + "content": { "type": "STRING", "value": "//" - }, - { - "type": "PATTERN", - "value": "(\\\\+(.|\\r?\\n)|[^\\\\\\n])*" } - ] - }, - { - "type": "SEQ", - "members": [ - { + }, + { + "type": "FIELD", + "name": "content", + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "(\\\\+(.|\\r?\\n)|[^\\\\\\n])*" + }, + "named": true, + "value": "comment_content" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "start", + "content": { "type": "STRING", "value": "/*" - }, - { - "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { + } + }, + { + "type": "FIELD", + "name": "content", + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + "named": true, + "value": "comment_content" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { "type": "STRING", "value": "/" } - ] - } - ] - } + } + ] + } + ] } }, "extras": [ @@ -9595,5 +9622,29 @@ "_field_declarator", "_type_declarator", "_abstract_declarator" - ] + ], + "PREC": { + "PAREN_DECLARATOR": -10, + "ASSIGNMENT": -2, + "CONDITIONAL": -1, + "DEFAULT": 0, + "LOGICAL_OR": 1, + "LOGICAL_AND": 2, + "INCLUSIVE_OR": 3, + "EXCLUSIVE_OR": 4, + "BITWISE_AND": 5, + "EQUAL": 6, + "RELATIONAL": 7, + "OFFSETOF": 8, + "SHIFT": 9, + "ADD": 10, + "MULTIPLY": 11, + "CAST": 12, + "SIZEOF": 13, + "UNARY": 14, + "CALL": 15, + "FIELD": 16, + "SUBSCRIPT": 17 + } } + diff --git a/src/node-types.json b/src/node-types.json index c8ff22c..dc754dc 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1058,6 +1058,46 @@ } } }, + { + "type": "comment", + "named": true, + "fields": { + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "comment_content", + "named": true + } + ] + }, + "end": { + "multiple": false, + "required": false, + "types": [ + { + "type": "/", + "named": false + } + ] + }, + "start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "/*", + "named": false + }, + { + "type": "//", + "named": false + } + ] + } + } + }, { "type": "compound_literal_expression", "named": true, @@ -4036,6 +4076,14 @@ "type": "/", "named": false }, + { + "type": "/*", + "named": false + }, + { + "type": "//", + "named": false + }, { "type": "/=", "named": false @@ -4281,7 +4329,7 @@ "named": true }, { - "type": "comment", + "type": "comment_content", "named": true }, { diff --git a/src/parser.c b/src/parser.c index 4b894da..d9acd60 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,6 +1,7 @@ -#include "tree_sitter/parser.h" +#include #if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -13,17 +14,17 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2021 -#define LARGE_STATE_COUNT 496 -#define SYMBOL_COUNT 348 +#define STATE_COUNT 2062 +#define LARGE_STATE_COUNT 507 +#define SYMBOL_COUNT 352 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 155 +#define TOKEN_COUNT 158 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 39 +#define FIELD_COUNT 40 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 132 +#define PRODUCTION_ID_COUNT 134 -enum ts_symbol_identifiers { +enum { sym_identifier = 1, aux_sym_preproc_include_token1 = 2, aux_sym_preproc_include_token2 = 3, @@ -177,203 +178,207 @@ enum ts_symbol_identifiers { 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_sized_type_specifier_repeat1 = 330, - aux_sym_enumerator_list_repeat1 = 331, - aux_sym__field_declaration_declarator_repeat1 = 332, - aux_sym_parameter_list_repeat1 = 333, - aux_sym__old_style_parameter_list_repeat1 = 334, - aux_sym_case_statement_repeat1 = 335, - aux_sym_generic_expression_repeat1 = 336, - aux_sym_gnu_asm_expression_repeat1 = 337, - aux_sym_gnu_asm_output_operand_list_repeat1 = 338, - aux_sym_gnu_asm_input_operand_list_repeat1 = 339, - aux_sym_gnu_asm_clobber_list_repeat1 = 340, - aux_sym_gnu_asm_goto_list_repeat1 = 341, - aux_sym_argument_list_repeat1 = 342, - aux_sym_initializer_list_repeat1 = 343, - aux_sym_initializer_pair_repeat1 = 344, - aux_sym_char_literal_repeat1 = 345, - aux_sym_concatenated_string_repeat1 = 346, - aux_sym_string_literal_repeat1 = 347, - alias_sym_field_identifier = 348, - alias_sym_statement_identifier = 349, - alias_sym_type_identifier = 350, + anon_sym_SLASH_SLASH = 154, + aux_sym_comment_token1 = 155, + anon_sym_SLASH_STAR = 156, + aux_sym_comment_token2 = 157, + sym_translation_unit = 158, + sym_preproc_include = 159, + sym_preproc_def = 160, + sym_preproc_function_def = 161, + sym_preproc_params = 162, + sym_preproc_call = 163, + sym_preproc_if = 164, + sym_preproc_ifdef = 165, + sym_preproc_else = 166, + sym_preproc_elif = 167, + sym_preproc_elifdef = 168, + sym_preproc_if_in_field_declaration_list = 169, + sym_preproc_ifdef_in_field_declaration_list = 170, + sym_preproc_else_in_field_declaration_list = 171, + sym_preproc_elif_in_field_declaration_list = 172, + sym_preproc_elifdef_in_field_declaration_list = 173, + sym_preproc_if_in_enumerator_list = 174, + sym_preproc_ifdef_in_enumerator_list = 175, + sym_preproc_else_in_enumerator_list = 176, + sym_preproc_elif_in_enumerator_list = 177, + sym_preproc_elifdef_in_enumerator_list = 178, + sym_preproc_if_in_enumerator_list_no_comma = 179, + sym_preproc_ifdef_in_enumerator_list_no_comma = 180, + sym_preproc_else_in_enumerator_list_no_comma = 181, + sym_preproc_elif_in_enumerator_list_no_comma = 182, + sym_preproc_elifdef_in_enumerator_list_no_comma = 183, + sym__preproc_expression = 184, + sym_preproc_parenthesized_expression = 185, + sym_preproc_defined = 186, + sym_preproc_unary_expression = 187, + sym_preproc_call_expression = 188, + sym_preproc_argument_list = 189, + sym_preproc_binary_expression = 190, + sym_function_definition = 191, + sym__old_style_function_definition = 192, + sym_declaration = 193, + sym_type_definition = 194, + sym__type_definition_type = 195, + sym__type_definition_declarators = 196, + sym__declaration_modifiers = 197, + sym__declaration_specifiers = 198, + sym_linkage_specification = 199, + sym_attribute_specifier = 200, + sym_attribute = 201, + sym_attribute_declaration = 202, + sym_ms_declspec_modifier = 203, + sym_ms_based_modifier = 204, + sym_ms_call_modifier = 205, + sym_ms_unaligned_ptr_modifier = 206, + sym_ms_pointer_modifier = 207, + sym_declaration_list = 208, + sym__declarator = 209, + sym__declaration_declarator = 210, + sym__field_declarator = 211, + sym__type_declarator = 212, + sym__abstract_declarator = 213, + sym_parenthesized_declarator = 214, + sym_parenthesized_field_declarator = 215, + sym_parenthesized_type_declarator = 216, + sym_abstract_parenthesized_declarator = 217, + sym_attributed_declarator = 218, + sym_attributed_field_declarator = 219, + sym_attributed_type_declarator = 220, + sym_pointer_declarator = 221, + sym_pointer_field_declarator = 222, + sym_pointer_type_declarator = 223, + sym_abstract_pointer_declarator = 224, + sym_function_declarator = 225, + sym__function_declaration_declarator = 226, + sym_function_field_declarator = 227, + sym_function_type_declarator = 228, + sym_abstract_function_declarator = 229, + sym__old_style_function_declarator = 230, + sym_array_declarator = 231, + sym_array_field_declarator = 232, + sym_array_type_declarator = 233, + sym_abstract_array_declarator = 234, + sym_init_declarator = 235, + sym_compound_statement = 236, + sym_storage_class_specifier = 237, + sym_type_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, + sym_comment = 316, + aux_sym_translation_unit_repeat1 = 317, + aux_sym_preproc_params_repeat1 = 318, + aux_sym_preproc_if_repeat1 = 319, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 320, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 321, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 322, + aux_sym_preproc_argument_list_repeat1 = 323, + aux_sym__old_style_function_definition_repeat1 = 324, + aux_sym_declaration_repeat1 = 325, + aux_sym_type_definition_repeat1 = 326, + aux_sym__type_definition_type_repeat1 = 327, + aux_sym__type_definition_declarators_repeat1 = 328, + aux_sym__declaration_specifiers_repeat1 = 329, + aux_sym_attribute_declaration_repeat1 = 330, + aux_sym_attributed_declarator_repeat1 = 331, + aux_sym_pointer_declarator_repeat1 = 332, + aux_sym_function_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[] = { @@ -531,7 +536,10 @@ static const char * const ts_symbol_names[] = { [sym_false] = "false", [anon_sym_NULL] = "NULL", [anon_sym_nullptr] = "nullptr", - [sym_comment] = "comment", + [anon_sym_SLASH_SLASH] = "//", + [aux_sym_comment_token1] = "comment_content", + [anon_sym_SLASH_STAR] = "/*", + [aux_sym_comment_token2] = "comment_content", [sym_translation_unit] = "translation_unit", [sym_preproc_include] = "preproc_include", [sym_preproc_def] = "preproc_def", @@ -690,6 +698,7 @@ static const char * const ts_symbol_names[] = { [sym_null] = "null", [sym__empty_declaration] = "_empty_declaration", [sym_macro_type_specifier] = "macro_type_specifier", + [sym_comment] = "comment", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", [aux_sym_preproc_params_repeat1] = "preproc_params_repeat1", [aux_sym_preproc_if_repeat1] = "preproc_if_repeat1", @@ -885,7 +894,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_false] = sym_false, [anon_sym_NULL] = anon_sym_NULL, [anon_sym_nullptr] = anon_sym_nullptr, - [sym_comment] = sym_comment, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [aux_sym_comment_token1] = aux_sym_comment_token1, + [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, + [aux_sym_comment_token2] = aux_sym_comment_token1, [sym_translation_unit] = sym_translation_unit, [sym_preproc_include] = sym_preproc_include, [sym_preproc_def] = sym_preproc_def, @@ -1044,6 +1056,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_null] = sym_null, [sym__empty_declaration] = sym__empty_declaration, [sym_macro_type_specifier] = sym_macro_type_specifier, + [sym_comment] = sym_comment, [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, [aux_sym_preproc_params_repeat1] = aux_sym_preproc_params_repeat1, [aux_sym_preproc_if_repeat1] = aux_sym_preproc_if_repeat1, @@ -1701,7 +1714,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_comment] = { + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [aux_sym_comment_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_SLASH_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_comment_token2] = { .visible = true, .named = true, }, @@ -2343,6 +2368,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_comment] = { + .visible = true, + .named = true, + }, [aux_sym_translation_unit_repeat1] = { .visible = false, .named = false, @@ -2497,7 +2526,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum ts_field_identifiers { +enum { field_alternative = 1, field_argument = 2, field_arguments = 3, @@ -2507,36 +2536,37 @@ enum ts_field_identifiers { field_condition = 7, field_consequence = 8, field_constraint = 9, - field_declarator = 10, - field_designator = 11, - field_directive = 12, - field_end = 13, - field_field = 14, - field_filter = 15, - field_function = 16, - field_goto_labels = 17, - field_index = 18, - field_initializer = 19, - field_input_operands = 20, - field_label = 21, - field_left = 22, - field_member = 23, - field_name = 24, - field_operand = 25, - field_operator = 26, - field_output_operands = 27, - field_parameters = 28, - field_path = 29, - field_prefix = 30, - field_register = 31, - field_right = 32, - field_size = 33, - field_start = 34, - field_symbol = 35, - field_type = 36, - field_underlying_type = 37, - field_update = 38, - field_value = 39, + field_content = 10, + field_declarator = 11, + field_designator = 12, + field_directive = 13, + field_end = 14, + field_field = 15, + field_filter = 16, + field_function = 17, + field_goto_labels = 18, + field_index = 19, + field_initializer = 20, + field_input_operands = 21, + field_label = 22, + field_left = 23, + field_member = 24, + field_name = 25, + field_operand = 26, + field_operator = 27, + field_output_operands = 28, + field_parameters = 29, + field_path = 30, + field_prefix = 31, + field_register = 32, + field_right = 33, + field_size = 34, + field_start = 35, + field_symbol = 36, + field_type = 37, + field_underlying_type = 38, + field_update = 39, + field_value = 40, }; static const char * const ts_field_names[] = { @@ -2550,6 +2580,7 @@ static const char * const ts_field_names[] = { [field_condition] = "condition", [field_consequence] = "consequence", [field_constraint] = "constraint", + [field_content] = "content", [field_declarator] = "declarator", [field_designator] = "designator", [field_directive] = "directive", @@ -2585,131 +2616,133 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 3}, [3] = {.index = 3, .length = 1}, - [4] = {.index = 4, .length = 1}, - [5] = {.index = 5, .length = 2}, - [6] = {.index = 7, .length = 1}, - [7] = {.index = 8, .length = 1}, - [8] = {.index = 9, .length = 1}, - [9] = {.index = 10, .length = 1}, - [10] = {.index = 3, .length = 1}, - [11] = {.index = 11, .length = 2}, + [4] = {.index = 4, .length = 2}, + [5] = {.index = 6, .length = 1}, + [6] = {.index = 7, .length = 2}, + [7] = {.index = 9, .length = 1}, + [8] = {.index = 10, .length = 1}, + [9] = {.index = 11, .length = 1}, + [10] = {.index = 12, .length = 1}, + [11] = {.index = 3, .length = 1}, [12] = {.index = 13, .length = 2}, [13] = {.index = 15, .length = 2}, - [14] = {.index = 17, .length = 1}, - [15] = {.index = 17, .length = 1}, - [16] = {.index = 18, .length = 1}, - [17] = {.index = 8, .length = 1}, - [18] = {.index = 19, .length = 2}, - [19] = {.index = 21, .length = 2}, - [20] = {.index = 23, .length = 1}, - [22] = {.index = 24, .length = 1}, - [23] = {.index = 25, .length = 2}, - [24] = {.index = 27, .length = 2}, - [25] = {.index = 29, .length = 1}, - [26] = {.index = 30, .length = 1}, - [27] = {.index = 31, .length = 2}, - [28] = {.index = 33, .length = 2}, - [29] = {.index = 35, .length = 1}, - [30] = {.index = 36, .length = 3}, - [31] = {.index = 39, .length = 1}, - [32] = {.index = 40, .length = 1}, - [33] = {.index = 41, .length = 3}, - [34] = {.index = 44, .length = 2}, - [35] = {.index = 46, .length = 2}, - [36] = {.index = 48, .length = 5}, - [37] = {.index = 53, .length = 3}, - [38] = {.index = 56, .length = 2}, - [39] = {.index = 58, .length = 2}, - [40] = {.index = 60, .length = 1}, - [41] = {.index = 61, .length = 2}, - [42] = {.index = 63, .length = 1}, - [43] = {.index = 64, .length = 2}, - [44] = {.index = 66, .length = 2}, - [45] = {.index = 68, .length = 2}, - [46] = {.index = 70, .length = 2}, - [47] = {.index = 72, .length = 2}, - [48] = {.index = 74, .length = 2}, - [49] = {.index = 76, .length = 2}, - [50] = {.index = 78, .length = 2}, - [52] = {.index = 80, .length = 2}, - [53] = {.index = 82, .length = 1}, - [54] = {.index = 83, .length = 1}, - [55] = {.index = 84, .length = 3}, - [56] = {.index = 87, .length = 1}, - [57] = {.index = 88, .length = 1}, - [58] = {.index = 89, .length = 1}, - [59] = {.index = 90, .length = 2}, - [60] = {.index = 92, .length = 1}, - [61] = {.index = 93, .length = 3}, - [62] = {.index = 96, .length = 3}, - [63] = {.index = 99, .length = 2}, + [14] = {.index = 17, .length = 2}, + [15] = {.index = 19, .length = 1}, + [16] = {.index = 19, .length = 1}, + [17] = {.index = 20, .length = 3}, + [18] = {.index = 23, .length = 1}, + [19] = {.index = 10, .length = 1}, + [20] = {.index = 24, .length = 2}, + [21] = {.index = 26, .length = 2}, + [22] = {.index = 28, .length = 1}, + [24] = {.index = 29, .length = 1}, + [25] = {.index = 30, .length = 2}, + [26] = {.index = 32, .length = 2}, + [27] = {.index = 34, .length = 1}, + [28] = {.index = 35, .length = 1}, + [29] = {.index = 36, .length = 2}, + [30] = {.index = 38, .length = 2}, + [31] = {.index = 40, .length = 1}, + [32] = {.index = 41, .length = 3}, + [33] = {.index = 44, .length = 1}, + [34] = {.index = 45, .length = 1}, + [35] = {.index = 46, .length = 3}, + [36] = {.index = 49, .length = 2}, + [37] = {.index = 51, .length = 2}, + [38] = {.index = 53, .length = 5}, + [39] = {.index = 58, .length = 3}, + [40] = {.index = 61, .length = 2}, + [41] = {.index = 63, .length = 2}, + [42] = {.index = 65, .length = 1}, + [43] = {.index = 66, .length = 2}, + [44] = {.index = 68, .length = 1}, + [45] = {.index = 69, .length = 2}, + [46] = {.index = 71, .length = 2}, + [47] = {.index = 73, .length = 2}, + [48] = {.index = 75, .length = 2}, + [49] = {.index = 77, .length = 2}, + [50] = {.index = 79, .length = 2}, + [51] = {.index = 81, .length = 2}, + [52] = {.index = 83, .length = 2}, + [54] = {.index = 85, .length = 2}, + [55] = {.index = 87, .length = 1}, + [56] = {.index = 88, .length = 1}, + [57] = {.index = 89, .length = 3}, + [58] = {.index = 92, .length = 1}, + [59] = {.index = 93, .length = 1}, + [60] = {.index = 94, .length = 1}, + [61] = {.index = 95, .length = 2}, + [62] = {.index = 97, .length = 1}, + [63] = {.index = 98, .length = 3}, [64] = {.index = 101, .length = 3}, [65] = {.index = 104, .length = 2}, - [66] = {.index = 106, .length = 5}, - [67] = {.index = 111, .length = 3}, - [68] = {.index = 114, .length = 5}, - [69] = {.index = 119, .length = 2}, - [70] = {.index = 121, .length = 2}, - [71] = {.index = 123, .length = 3}, + [66] = {.index = 106, .length = 3}, + [67] = {.index = 109, .length = 2}, + [68] = {.index = 111, .length = 5}, + [69] = {.index = 116, .length = 3}, + [70] = {.index = 119, .length = 5}, + [71] = {.index = 124, .length = 2}, [72] = {.index = 126, .length = 2}, - [73] = {.index = 128, .length = 2}, - [74] = {.index = 130, .length = 1}, - [75] = {.index = 131, .length = 2}, - [76] = {.index = 133, .length = 2}, - [77] = {.index = 135, .length = 2}, - [78] = {.index = 137, .length = 3}, + [73] = {.index = 128, .length = 3}, + [74] = {.index = 131, .length = 2}, + [75] = {.index = 133, .length = 2}, + [76] = {.index = 135, .length = 1}, + [77] = {.index = 136, .length = 2}, + [78] = {.index = 138, .length = 2}, [79] = {.index = 140, .length = 2}, - [80] = {.index = 142, .length = 2}, - [81] = {.index = 144, .length = 2}, - [82] = {.index = 146, .length = 1}, - [83] = {.index = 147, .length = 2}, - [84] = {.index = 149, .length = 2}, - [85] = {.index = 151, .length = 4}, - [86] = {.index = 155, .length = 1}, - [87] = {.index = 156, .length = 2}, - [88] = {.index = 158, .length = 1}, - [89] = {.index = 159, .length = 1}, - [90] = {.index = 160, .length = 4}, - [91] = {.index = 164, .length = 4}, - [92] = {.index = 168, .length = 2}, - [93] = {.index = 170, .length = 2}, - [94] = {.index = 172, .length = 3}, - [95] = {.index = 175, .length = 5}, - [96] = {.index = 180, .length = 3}, - [97] = {.index = 183, .length = 2}, - [98] = {.index = 185, .length = 1}, - [100] = {.index = 186, .length = 2}, - [101] = {.index = 188, .length = 2}, - [102] = {.index = 190, .length = 2}, - [103] = {.index = 192, .length = 3}, + [80] = {.index = 142, .length = 3}, + [81] = {.index = 145, .length = 2}, + [82] = {.index = 147, .length = 2}, + [83] = {.index = 149, .length = 2}, + [84] = {.index = 151, .length = 1}, + [85] = {.index = 152, .length = 2}, + [86] = {.index = 154, .length = 2}, + [87] = {.index = 156, .length = 4}, + [88] = {.index = 160, .length = 1}, + [89] = {.index = 161, .length = 2}, + [90] = {.index = 163, .length = 1}, + [91] = {.index = 164, .length = 1}, + [92] = {.index = 165, .length = 4}, + [93] = {.index = 169, .length = 4}, + [94] = {.index = 173, .length = 2}, + [95] = {.index = 175, .length = 2}, + [96] = {.index = 177, .length = 3}, + [97] = {.index = 180, .length = 5}, + [98] = {.index = 185, .length = 3}, + [99] = {.index = 188, .length = 2}, + [100] = {.index = 190, .length = 1}, + [102] = {.index = 191, .length = 2}, + [103] = {.index = 193, .length = 2}, [104] = {.index = 195, .length = 2}, - [105] = {.index = 197, .length = 2}, - [106] = {.index = 199, .length = 2}, - [107] = {.index = 201, .length = 2}, - [108] = {.index = 203, .length = 3}, + [105] = {.index = 197, .length = 3}, + [106] = {.index = 200, .length = 2}, + [107] = {.index = 202, .length = 2}, + [108] = {.index = 204, .length = 2}, [109] = {.index = 206, .length = 2}, - [110] = {.index = 208, .length = 1}, - [111] = {.index = 209, .length = 5}, - [112] = {.index = 214, .length = 2}, - [113] = {.index = 216, .length = 3}, + [110] = {.index = 208, .length = 3}, + [111] = {.index = 211, .length = 2}, + [112] = {.index = 213, .length = 1}, + [113] = {.index = 214, .length = 5}, [114] = {.index = 219, .length = 2}, - [115] = {.index = 219, .length = 2}, - [116] = {.index = 221, .length = 3}, + [115] = {.index = 221, .length = 3}, + [116] = {.index = 224, .length = 2}, [117] = {.index = 224, .length = 2}, - [118] = {.index = 226, .length = 1}, - [119] = {.index = 227, .length = 4}, - [120] = {.index = 231, .length = 3}, - [121] = {.index = 234, .length = 2}, - [122] = {.index = 236, .length = 2}, - [123] = {.index = 35, .length = 1}, - [124] = {.index = 238, .length = 5}, - [125] = {.index = 243, .length = 4}, - [126] = {.index = 247, .length = 2}, - [127] = {.index = 249, .length = 2}, - [128] = {.index = 251, .length = 2}, - [129] = {.index = 253, .length = 5}, - [130] = {.index = 258, .length = 2}, - [131] = {.index = 260, .length = 3}, + [118] = {.index = 226, .length = 3}, + [119] = {.index = 229, .length = 2}, + [120] = {.index = 231, .length = 1}, + [121] = {.index = 232, .length = 4}, + [122] = {.index = 236, .length = 3}, + [123] = {.index = 239, .length = 2}, + [124] = {.index = 241, .length = 2}, + [125] = {.index = 40, .length = 1}, + [126] = {.index = 243, .length = 5}, + [127] = {.index = 248, .length = 4}, + [128] = {.index = 252, .length = 2}, + [129] = {.index = 254, .length = 2}, + [130] = {.index = 256, .length = 2}, + [131] = {.index = 258, .length = 5}, + [132] = {.index = 263, .length = 2}, + [133] = {.index = 265, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2720,381 +2753,388 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [3] = {field_type, 0}, [4] = + {field_content, 1}, + {field_start, 0}, + [6] = {field_directive, 0}, - [5] = + [7] = {field_argument, 1}, {field_operator, 0}, - [7] = + [9] = {field_name, 0}, - [8] = + [10] = {field_name, 1}, - [9] = + [11] = {field_body, 1}, - [10] = + [12] = {field_value, 1}, - [11] = + [13] = {field_declarator, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, - [13] = + [15] = {field_argument, 0}, {field_operator, 1}, - [15] = + [17] = {field_arguments, 1}, {field_function, 0}, - [17] = + [19] = {field_type, 1}, - [18] = + [20] = + {field_content, 1}, + {field_end, 2}, + {field_start, 0}, + [23] = {field_path, 1}, - [19] = + [24] = {field_argument, 1}, {field_directive, 0}, - [21] = + [26] = {field_declarator, 1}, {field_type, 0}, - [23] = + [28] = {field_parameters, 0}, - [24] = + [29] = {field_declarator, 0}, - [25] = + [30] = {field_body, 2}, {field_value, 1}, - [27] = + [32] = {field_body, 2}, {field_name, 1}, - [29] = + [34] = {field_name, 2}, - [30] = + [35] = {field_body, 2}, - [31] = + [36] = {field_condition, 1}, {field_consequence, 2}, - [33] = + [38] = {field_body, 2}, {field_condition, 1}, - [35] = + [40] = {field_label, 1}, - [36] = + [41] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [39] = + [44] = {field_label, 0}, - [40] = + [45] = {field_declarator, 1}, - [41] = + [46] = {field_body, 2}, {field_declarator, 1}, {field_type, 0, .inherited = true}, - [44] = + [49] = {field_declarator, 0}, {field_parameters, 1}, - [46] = + [51] = {field_declarator, 1}, {field_type, 0, .inherited = true}, - [48] = + [53] = {field_body, 2}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [53] = + [58] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [56] = + [61] = {field_name, 1}, {field_value, 2}, - [58] = + [63] = {field_name, 1}, {field_parameters, 2}, - [60] = + [65] = {field_condition, 1}, - [61] = + [66] = {field_alternative, 2}, {field_name, 1}, - [63] = + [68] = {field_type, 0, .inherited = true}, - [64] = + [69] = {field_declarator, 2}, {field_type, 0}, - [66] = + [71] = {field_left, 0}, {field_right, 2}, - [68] = + [73] = {field_type, 1}, {field_value, 3}, - [70] = + [75] = {field_declarator, 2}, {field_type, 1}, - [72] = + [77] = {field_declarator, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [74] = + [79] = {field_declarator, 0}, {field_declarator, 1, .inherited = true}, - [76] = + [81] = {field_name, 2}, {field_prefix, 0}, - [78] = + [83] = {field_name, 1}, {field_underlying_type, 3}, - [80] = + [85] = {field_body, 3}, {field_name, 2}, - [82] = + [87] = {field_name, 3}, - [83] = + [88] = {field_body, 3}, - [84] = + [89] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [87] = + [92] = {field_initializer, 0}, - [88] = + [93] = {field_type, 2}, - [89] = + [94] = {field_assembly_code, 2}, - [90] = + [95] = {field_name, 0}, {field_type, 2}, - [92] = + [97] = {field_declarator, 2}, - [93] = + [98] = {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [96] = + [101] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [99] = + [104] = {field_declarator, 0}, {field_value, 2}, - [101] = + [106] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [104] = + [109] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [106] = + [111] = {field_body, 3}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [111] = + [116] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [114] = + [119] = {field_body, 3}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [119] = + [124] = {field_argument, 0}, {field_index, 2}, - [121] = + [126] = {field_alternative, 3}, {field_condition, 0}, - [123] = + [128] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [126] = + [131] = {field_alternative, 3}, {field_condition, 1}, - [128] = + [133] = {field_alternative, 3}, {field_name, 1}, - [130] = + [135] = {field_size, 1}, - [131] = + [136] = {field_declarator, 3}, {field_type, 1}, - [133] = + [138] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [135] = + [140] = {field_name, 0}, {field_value, 2}, - [137] = + [142] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [140] = + [145] = {field_declarator, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [142] = + [147] = {field_body, 4}, {field_name, 3}, - [144] = + [149] = {field_body, 1}, {field_condition, 3}, - [146] = + [151] = {field_update, 2}, - [147] = + [152] = {field_initializer, 0}, {field_update, 2}, - [149] = + [154] = {field_condition, 1}, {field_initializer, 0}, - [151] = + [156] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [155] = + [160] = {field_operand, 1}, - [156] = + [161] = {field_assembly_code, 2}, {field_output_operands, 3}, - [158] = + [163] = {field_assembly_code, 3}, - [159] = + [164] = {field_declarator, 3}, - [160] = + [165] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [164] = + [169] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [168] = + [173] = {field_declarator, 0}, {field_size, 2}, - [170] = + [175] = {field_declarator, 1}, {field_declarator, 2}, - [172] = + [177] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [175] = + [180] = {field_body, 4}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [180] = + [185] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [183] = + [188] = {field_alternative, 4}, {field_condition, 1}, - [185] = + [190] = {field_size, 2}, - [186] = + [191] = {field_body, 2}, {field_filter, 1}, - [188] = + [193] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [190] = + [195] = {field_condition, 1}, {field_update, 3}, - [192] = + [197] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [195] = + [200] = {field_initializer, 0}, {field_update, 3}, - [197] = + [202] = {field_condition, 2}, {field_initializer, 0}, - [199] = + [204] = {field_member, 4}, {field_type, 2}, - [201] = + [206] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [203] = + [208] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [206] = + [211] = {field_assembly_code, 3}, {field_output_operands, 4}, - [208] = + [213] = {field_declarator, 4}, - [209] = + [214] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [214] = + [219] = {field_declarator, 0}, {field_size, 3}, - [216] = + [221] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [219] = + [224] = {field_designator, 0}, {field_value, 2}, - [221] = + [226] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [224] = + [229] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [226] = + [231] = {field_register, 1}, - [227] = + [232] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [231] = + [236] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [234] = + [239] = {field_constraint, 0}, {field_value, 2}, - [236] = + [241] = {field_register, 1}, {field_register, 2, .inherited = true}, - [238] = + [243] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [243] = + [248] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [247] = + [252] = {field_end, 3}, {field_start, 1}, - [249] = + [254] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [251] = + [256] = {field_label, 1}, {field_label, 2, .inherited = true}, - [253] = + [258] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [258] = + [263] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [260] = + [265] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3105,58 +3145,58 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = alias_sym_type_identifier, }, - [7] = { + [8] = { [1] = alias_sym_type_identifier, }, - [10] = { + [11] = { [0] = alias_sym_type_identifier, }, - [15] = { + [16] = { [1] = alias_sym_type_identifier, }, - [21] = { + [23] = { [0] = sym_primitive_type, }, - [24] = { + [26] = { [1] = alias_sym_type_identifier, }, - [25] = { + [27] = { [2] = alias_sym_type_identifier, }, - [29] = { + [31] = { [1] = alias_sym_statement_identifier, }, - [31] = { + [33] = { [0] = alias_sym_statement_identifier, }, - [37] = { + [39] = { [2] = alias_sym_field_identifier, }, - [50] = { + [52] = { [1] = alias_sym_type_identifier, }, - [51] = { + [53] = { [0] = alias_sym_field_identifier, }, - [52] = { + [54] = { [2] = alias_sym_type_identifier, }, - [53] = { + [55] = { [3] = alias_sym_type_identifier, }, - [78] = { + [80] = { [1] = alias_sym_type_identifier, }, - [80] = { + [82] = { [3] = alias_sym_type_identifier, }, - [99] = { + [101] = { [1] = alias_sym_field_identifier, }, - [106] = { + [108] = { [4] = alias_sym_field_identifier, }, - [114] = { + [116] = { [0] = alias_sym_field_identifier, }, }; @@ -3172,43 +3212,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 5, - [7] = 7, - [8] = 5, - [9] = 5, - [10] = 10, - [11] = 3, - [12] = 10, - [13] = 3, - [14] = 2, - [15] = 10, - [16] = 3, + [6] = 6, + [7] = 5, + [8] = 8, + [9] = 9, + [10] = 3, + [11] = 5, + [12] = 8, + [13] = 8, + [14] = 3, + [15] = 2, + [16] = 8, [17] = 2, - [18] = 18, - [19] = 2, - [20] = 10, - [21] = 21, + [18] = 2, + [19] = 19, + [20] = 3, + [21] = 5, [22] = 22, [23] = 23, [24] = 24, [25] = 22, - [26] = 23, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 28, - [31] = 23, - [32] = 28, - [33] = 33, - [34] = 28, - [35] = 29, - [36] = 29, - [37] = 23, - [38] = 33, - [39] = 22, - [40] = 33, - [41] = 33, - [42] = 29, + [26] = 26, + [27] = 23, + [28] = 23, + [29] = 26, + [30] = 30, + [31] = 31, + [32] = 26, + [33] = 24, + [34] = 24, + [35] = 22, + [36] = 31, + [37] = 31, + [38] = 23, + [39] = 26, + [40] = 31, + [41] = 41, + [42] = 24, [43] = 43, [44] = 44, [45] = 45, @@ -3216,25 +3256,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 48, - [51] = 47, - [52] = 46, - [53] = 48, - [54] = 47, - [55] = 45, - [56] = 45, + [50] = 49, + [51] = 49, + [52] = 49, + [53] = 46, + [54] = 45, + [55] = 48, + [56] = 47, [57] = 46, [58] = 48, - [59] = 49, + [59] = 48, [60] = 47, - [61] = 45, - [62] = 46, - [63] = 49, - [64] = 49, - [65] = 48, - [66] = 46, - [67] = 47, - [68] = 45, + [61] = 46, + [62] = 45, + [63] = 45, + [64] = 47, + [65] = 46, + [66] = 45, + [67] = 48, + [68] = 47, [69] = 49, [70] = 70, [71] = 70, @@ -3258,7 +3298,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [89] = 89, [90] = 90, [91] = 91, - [92] = 80, + [92] = 92, [93] = 93, [94] = 94, [95] = 95, @@ -3277,19 +3317,19 @@ 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, [115] = 115, [116] = 116, - [117] = 117, + [117] = 93, [118] = 118, [119] = 119, [120] = 120, [121] = 121, [122] = 122, - [123] = 123, + [123] = 97, [124] = 124, [125] = 125, [126] = 126, @@ -3322,320 +3362,320 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [153] = 153, [154] = 154, [155] = 155, - [156] = 75, + [156] = 156, [157] = 157, [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] = 106, - [173] = 114, - [174] = 113, - [175] = 114, - [176] = 118, - [177] = 102, - [178] = 100, - [179] = 112, - [180] = 113, - [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, - [232] = 103, - [233] = 85, - [234] = 79, - [235] = 80, - [236] = 90, - [237] = 81, - [238] = 88, + [159] = 75, + [160] = 160, + [161] = 160, + [162] = 75, + [163] = 76, + [164] = 77, + [165] = 88, + [166] = 86, + [167] = 88, + [168] = 85, + [169] = 96, + [170] = 94, + [171] = 93, + [172] = 127, + [173] = 128, + [174] = 90, + [175] = 84, + [176] = 103, + [177] = 77, + [178] = 81, + [179] = 97, + [180] = 79, + [181] = 106, + [182] = 99, + [183] = 109, + [184] = 91, + [185] = 104, + [186] = 84, + [187] = 90, + [188] = 91, + [189] = 114, + [190] = 107, + [191] = 87, + [192] = 98, + [193] = 76, + [194] = 124, + [195] = 86, + [196] = 128, + [197] = 100, + [198] = 81, + [199] = 80, + [200] = 85, + [201] = 108, + [202] = 101, + [203] = 82, + [204] = 77, + [205] = 83, + [206] = 120, + [207] = 104, + [208] = 97, + [209] = 111, + [210] = 110, + [211] = 112, + [212] = 113, + [213] = 107, + [214] = 115, + [215] = 116, + [216] = 80, + [217] = 98, + [218] = 118, + [219] = 100, + [220] = 119, + [221] = 122, + [222] = 125, + [223] = 126, + [224] = 105, + [225] = 78, + [226] = 102, + [227] = 127, + [228] = 78, + [229] = 124, + [230] = 102, + [231] = 95, + [232] = 79, + [233] = 110, + [234] = 105, + [235] = 126, + [236] = 106, + [237] = 110, + [238] = 125, [239] = 82, - [240] = 83, - [241] = 112, - [242] = 86, - [243] = 115, - [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, + [240] = 121, + [241] = 99, + [242] = 85, + [243] = 101, + [244] = 86, + [245] = 87, + [246] = 127, + [247] = 87, + [248] = 124, + [249] = 88, + [250] = 103, + [251] = 89, + [252] = 92, + [253] = 114, + [254] = 83, + [255] = 120, + [256] = 90, [257] = 91, - [258] = 85, + [258] = 104, [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, - [278] = 122, - [279] = 123, - [280] = 124, - [281] = 101, - [282] = 125, - [283] = 127, - [284] = 79, - [285] = 99, - [286] = 126, - [287] = 120, + [260] = 95, + [261] = 96, + [262] = 103, + [263] = 114, + [264] = 83, + [265] = 121, + [266] = 96, + [267] = 94, + [268] = 111, + [269] = 95, + [270] = 100, + [271] = 112, + [272] = 113, + [273] = 115, + [274] = 102, + [275] = 128, + [276] = 108, + [277] = 101, + [278] = 111, + [279] = 105, + [280] = 112, + [281] = 113, + [282] = 115, + [283] = 126, + [284] = 93, + [285] = 116, + [286] = 118, + [287] = 109, [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, + [289] = 82, + [290] = 122, + [291] = 80, + [292] = 109, + [293] = 92, + [294] = 121, + [295] = 76, + [296] = 92, + [297] = 89, + [298] = 89, + [299] = 116, + [300] = 118, + [301] = 120, + [302] = 84, + [303] = 107, + [304] = 81, + [305] = 125, + [306] = 94, + [307] = 79, + [308] = 119, + [309] = 78, + [310] = 108, + [311] = 99, + [312] = 122, + [313] = 106, [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, - [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, + [315] = 139, + [316] = 149, + [317] = 317, + [318] = 141, + [319] = 131, + [320] = 138, + [321] = 145, + [322] = 322, + [323] = 137, + [324] = 147, + [325] = 143, + [326] = 154, + [327] = 132, + [328] = 142, + [329] = 329, + [330] = 140, + [331] = 134, + [332] = 136, + [333] = 322, + [334] = 139, + [335] = 335, + [336] = 322, + [337] = 142, + [338] = 329, + [339] = 135, + [340] = 322, + [341] = 143, + [342] = 317, + [343] = 343, + [344] = 145, + [345] = 132, + [346] = 317, + [347] = 347, + [348] = 146, + [349] = 151, + [350] = 154, + [351] = 131, + [352] = 144, + [353] = 157, + [354] = 152, + [355] = 133, + [356] = 150, + [357] = 343, + [358] = 153, + [359] = 329, + [360] = 133, + [361] = 155, + [362] = 314, + [363] = 130, + [364] = 364, + [365] = 314, + [366] = 151, [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] = 135, + [368] = 152, + [369] = 322, + [370] = 364, + [371] = 138, + [372] = 343, + [373] = 343, + [374] = 314, + [375] = 129, + [376] = 153, + [377] = 155, + [378] = 317, + [379] = 329, + [380] = 141, + [381] = 347, + [382] = 144, + [383] = 140, + [384] = 156, + [385] = 157, + [386] = 135, + [387] = 156, + [388] = 335, + [389] = 364, + [390] = 335, + [391] = 148, + [392] = 347, + [393] = 149, + [394] = 347, + [395] = 147, + [396] = 335, + [397] = 134, + [398] = 335, + [399] = 329, + [400] = 317, + [401] = 364, + [402] = 146, + [403] = 364, + [404] = 314, + [405] = 129, + [406] = 148, + [407] = 137, + [408] = 136, + [409] = 130, + [410] = 343, [411] = 138, - [412] = 132, - [413] = 139, - [414] = 136, - [415] = 415, - [416] = 416, - [417] = 141, - [418] = 137, - [419] = 149, - [420] = 146, - [421] = 152, - [422] = 143, - [423] = 133, - [424] = 154, - [425] = 144, - [426] = 147, - [427] = 145, - [428] = 151, - [429] = 130, - [430] = 129, - [431] = 140, - [432] = 153, - [433] = 128, - [434] = 434, - [435] = 435, - [436] = 435, - [437] = 435, - [438] = 434, - [439] = 435, - [440] = 435, - [441] = 434, - [442] = 434, - [443] = 434, - [444] = 435, - [445] = 434, - [446] = 446, + [412] = 141, + [413] = 160, + [414] = 147, + [415] = 135, + [416] = 146, + [417] = 134, + [418] = 139, + [419] = 153, + [420] = 155, + [421] = 143, + [422] = 130, + [423] = 156, + [424] = 136, + [425] = 142, + [426] = 154, + [427] = 149, + [428] = 137, + [429] = 429, + [430] = 152, + [431] = 129, + [432] = 157, + [433] = 433, + [434] = 131, + [435] = 132, + [436] = 151, + [437] = 145, + [438] = 150, + [439] = 133, + [440] = 440, + [441] = 148, + [442] = 442, + [443] = 442, + [444] = 442, + [445] = 442, + [446] = 442, [447] = 447, - [448] = 157, - [449] = 157, - [450] = 157, - [451] = 75, - [452] = 452, - [453] = 452, - [454] = 452, - [455] = 452, - [456] = 452, - [457] = 452, - [458] = 458, - [459] = 452, - [460] = 452, - [461] = 461, - [462] = 452, - [463] = 463, - [464] = 464, - [465] = 465, + [448] = 447, + [449] = 447, + [450] = 447, + [451] = 447, + [452] = 442, + [453] = 447, + [454] = 160, + [455] = 160, + [456] = 456, + [457] = 457, + [458] = 160, + [459] = 75, + [460] = 460, + [461] = 460, + [462] = 460, + [463] = 460, + [464] = 460, + [465] = 460, [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, + [467] = 460, + [468] = 460, + [469] = 460, [470] = 470, [471] = 471, [472] = 472, @@ -3650,75 +3690,75 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [481] = 481, [482] = 482, [483] = 483, - [484] = 480, + [484] = 484, [485] = 485, [486] = 486, - [487] = 480, - [488] = 485, - [489] = 478, - [490] = 478, - [491] = 485, - [492] = 486, - [493] = 486, - [494] = 494, - [495] = 495, + [487] = 486, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 491, + [495] = 492, [496] = 496, - [497] = 496, - [498] = 498, - [499] = 499, - [500] = 500, - [501] = 501, + [497] = 490, + [498] = 490, + [499] = 491, + [500] = 486, + [501] = 492, [502] = 502, [503] = 503, - [504] = 500, - [505] = 505, - [506] = 500, - [507] = 503, - [508] = 501, - [509] = 501, - [510] = 503, - [511] = 501, - [512] = 512, - [513] = 503, - [514] = 501, + [504] = 504, + [505] = 504, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 509, + [513] = 513, + [514] = 513, [515] = 515, - [516] = 516, + [516] = 513, [517] = 517, [518] = 518, - [519] = 501, + [519] = 509, [520] = 520, - [521] = 500, - [522] = 503, + [521] = 513, + [522] = 513, [523] = 523, - [524] = 503, - [525] = 525, + [524] = 523, + [525] = 513, [526] = 526, - [527] = 527, - [528] = 495, + [527] = 509, + [528] = 528, [529] = 529, [530] = 530, - [531] = 531, - [532] = 532, - [533] = 495, - [534] = 534, + [531] = 523, + [532] = 509, + [533] = 523, + [534] = 509, [535] = 535, [536] = 536, [537] = 537, [538] = 538, [539] = 539, [540] = 540, - [541] = 532, + [541] = 541, [542] = 542, [543] = 543, - [544] = 544, - [545] = 545, + [544] = 536, + [545] = 503, [546] = 546, [547] = 547, [548] = 548, [549] = 549, [550] = 550, - [551] = 547, - [552] = 552, + [551] = 551, + [552] = 503, [553] = 553, [554] = 554, [555] = 555, @@ -3729,120 +3769,120 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [560] = 560, [561] = 561, [562] = 562, - [563] = 563, - [564] = 561, - [565] = 565, - [566] = 566, - [567] = 563, - [568] = 568, - [569] = 566, + [563] = 556, + [564] = 564, + [565] = 562, + [566] = 555, + [567] = 567, + [568] = 561, + [569] = 569, [570] = 570, [571] = 571, - [572] = 560, - [573] = 554, - [574] = 548, - [575] = 561, - [576] = 549, - [577] = 550, - [578] = 562, - [579] = 565, - [580] = 547, - [581] = 566, - [582] = 563, - [583] = 552, - [584] = 553, - [585] = 555, - [586] = 586, - [587] = 548, - [588] = 588, - [589] = 586, - [590] = 549, - [591] = 550, - [592] = 552, - [593] = 553, - [594] = 555, - [595] = 556, - [596] = 586, - [597] = 557, - [598] = 558, - [599] = 599, - [600] = 556, - [601] = 557, - [602] = 562, - [603] = 565, - [604] = 558, - [605] = 563, - [606] = 561, - [607] = 560, - [608] = 558, - [609] = 557, - [610] = 556, - [611] = 555, - [612] = 553, - [613] = 552, - [614] = 547, - [615] = 550, - [616] = 548, - [617] = 561, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 572, + [576] = 559, + [577] = 577, + [578] = 573, + [579] = 569, + [580] = 572, + [581] = 571, + [582] = 582, + [583] = 557, + [584] = 558, + [585] = 559, + [586] = 561, + [587] = 562, + [588] = 558, + [589] = 556, + [590] = 574, + [591] = 564, + [592] = 567, + [593] = 569, + [594] = 557, + [595] = 574, + [596] = 596, + [597] = 597, + [598] = 569, + [599] = 570, + [600] = 554, + [601] = 567, + [602] = 555, + [603] = 570, + [604] = 560, + [605] = 564, + [606] = 556, + [607] = 562, + [608] = 561, + [609] = 609, + [610] = 570, + [611] = 559, + [612] = 558, + [613] = 557, + [614] = 614, + [615] = 615, + [616] = 572, + [617] = 573, [618] = 618, - [619] = 560, - [620] = 561, - [621] = 560, - [622] = 599, - [623] = 558, - [624] = 624, - [625] = 625, - [626] = 557, - [627] = 560, - [628] = 556, + [619] = 573, + [620] = 577, + [621] = 572, + [622] = 557, + [623] = 623, + [624] = 558, + [625] = 570, + [626] = 564, + [627] = 627, + [628] = 628, [629] = 555, - [630] = 553, - [631] = 552, - [632] = 547, - [633] = 550, - [634] = 549, - [635] = 548, - [636] = 554, - [637] = 563, - [638] = 565, - [639] = 562, - [640] = 546, - [641] = 548, - [642] = 642, - [643] = 549, - [644] = 550, - [645] = 547, - [646] = 552, - [647] = 553, - [648] = 555, - [649] = 556, + [630] = 571, + [631] = 559, + [632] = 560, + [633] = 561, + [634] = 573, + [635] = 560, + [636] = 555, + [637] = 596, + [638] = 560, + [639] = 555, + [640] = 562, + [641] = 560, + [642] = 556, + [643] = 564, + [644] = 577, + [645] = 567, + [646] = 573, + [647] = 647, + [648] = 569, + [649] = 554, [650] = 557, [651] = 558, - [652] = 652, - [653] = 549, - [654] = 563, - [655] = 586, - [656] = 586, - [657] = 565, - [658] = 562, - [659] = 562, - [660] = 565, - [661] = 461, - [662] = 662, - [663] = 663, - [664] = 663, - [665] = 665, - [666] = 666, - [667] = 663, - [668] = 663, - [669] = 669, + [652] = 554, + [653] = 567, + [654] = 574, + [655] = 574, + [656] = 623, + [657] = 569, + [658] = 559, + [659] = 561, + [660] = 660, + [661] = 562, + [662] = 556, + [663] = 564, + [664] = 570, + [665] = 574, + [666] = 554, + [667] = 572, + [668] = 567, + [669] = 470, [670] = 670, - [671] = 671, + [671] = 670, [672] = 672, [673] = 673, - [674] = 674, + [674] = 670, [675] = 675, - [676] = 676, + [676] = 670, [677] = 677, [678] = 678, [679] = 679, @@ -3851,148 +3891,148 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [682] = 682, [683] = 683, [684] = 684, - [685] = 684, - [686] = 447, - [687] = 446, + [685] = 685, + [686] = 686, + [687] = 687, [688] = 688, [689] = 689, [690] = 690, [691] = 691, [692] = 692, - [693] = 690, - [694] = 688, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 688, - [699] = 690, + [693] = 693, + [694] = 694, + [695] = 456, + [696] = 694, + [697] = 457, + [698] = 698, + [699] = 699, [700] = 700, - [701] = 691, - [702] = 702, - [703] = 695, + [701] = 701, + [702] = 698, + [703] = 703, [704] = 704, - [705] = 705, + [705] = 701, [706] = 706, - [707] = 695, - [708] = 691, - [709] = 695, - [710] = 688, + [707] = 703, + [708] = 708, + [709] = 708, + [710] = 708, [711] = 711, - [712] = 691, - [713] = 690, - [714] = 714, + [712] = 712, + [713] = 713, + [714] = 698, [715] = 715, [716] = 716, [717] = 717, - [718] = 718, + [718] = 708, [719] = 719, [720] = 720, [721] = 721, - [722] = 722, + [722] = 698, [723] = 723, [724] = 724, [725] = 725, - [726] = 726, - [727] = 727, - [728] = 669, - [729] = 729, + [726] = 701, + [727] = 701, + [728] = 703, + [729] = 703, [730] = 730, [731] = 731, [732] = 732, [733] = 733, [734] = 734, - [735] = 683, - [736] = 736, + [735] = 735, + [736] = 678, [737] = 737, - [738] = 669, + [738] = 738, [739] = 739, [740] = 740, [741] = 741, - [742] = 741, - [743] = 741, - [744] = 740, - [745] = 741, - [746] = 740, - [747] = 740, + [742] = 693, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 747, [748] = 748, [749] = 749, [750] = 750, - [751] = 751, + [751] = 678, [752] = 752, - [753] = 748, + [753] = 753, [754] = 754, - [755] = 750, - [756] = 756, - [757] = 757, - [758] = 748, - [759] = 759, - [760] = 748, - [761] = 748, + [755] = 754, + [756] = 753, + [757] = 753, + [758] = 754, + [759] = 753, + [760] = 754, + [761] = 761, [762] = 762, [763] = 763, - [764] = 669, + [764] = 763, [765] = 765, [766] = 766, [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, + [768] = 761, + [769] = 763, + [770] = 763, [771] = 771, [772] = 772, - [773] = 446, + [773] = 773, [774] = 774, - [775] = 447, - [776] = 776, + [775] = 775, + [776] = 763, [777] = 777, [778] = 778, - [779] = 779, - [780] = 767, + [779] = 678, + [780] = 780, [781] = 781, [782] = 782, [783] = 783, - [784] = 784, - [785] = 785, + [784] = 457, + [785] = 456, [786] = 786, [787] = 787, [788] = 788, - [789] = 763, - [790] = 770, + [789] = 789, + [790] = 790, [791] = 791, - [792] = 769, - [793] = 777, + [792] = 792, + [793] = 793, [794] = 794, [795] = 795, - [796] = 768, - [797] = 774, - [798] = 766, - [799] = 799, - [800] = 778, - [801] = 772, + [796] = 787, + [797] = 786, + [798] = 798, + [799] = 793, + [800] = 788, + [801] = 790, [802] = 802, - [803] = 771, + [803] = 778, [804] = 804, - [805] = 765, + [805] = 780, [806] = 806, [807] = 807, [808] = 808, - [809] = 809, + [809] = 794, [810] = 810, [811] = 811, [812] = 812, - [813] = 813, + [813] = 791, [814] = 814, - [815] = 815, - [816] = 816, + [815] = 792, + [816] = 789, [817] = 817, [818] = 818, [819] = 819, - [820] = 820, - [821] = 821, + [820] = 783, + [821] = 730, [822] = 822, [823] = 823, [824] = 824, [825] = 825, - [826] = 826, + [826] = 730, [827] = 827, [828] = 828, [829] = 829, @@ -4006,582 +4046,582 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [837] = 837, [838] = 838, [839] = 839, - [840] = 799, + [840] = 840, [841] = 841, [842] = 842, [843] = 843, [844] = 844, [845] = 845, - [846] = 144, + [846] = 846, [847] = 847, [848] = 848, - [849] = 137, - [850] = 154, - [851] = 143, + [849] = 849, + [850] = 850, + [851] = 851, [852] = 852, [853] = 853, [854] = 854, [855] = 855, [856] = 856, - [857] = 131, - [858] = 142, + [857] = 857, + [858] = 858, [859] = 859, [860] = 860, [861] = 861, [862] = 862, [863] = 863, [864] = 864, - [865] = 863, - [866] = 863, - [867] = 863, - [868] = 727, - [869] = 722, - [870] = 772, - [871] = 771, + [865] = 865, + [866] = 138, + [867] = 131, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, [872] = 872, - [873] = 765, - [874] = 766, - [875] = 767, - [876] = 768, - [877] = 769, - [878] = 770, - [879] = 763, - [880] = 778, - [881] = 777, - [882] = 774, + [873] = 873, + [874] = 141, + [875] = 875, + [876] = 876, + [877] = 149, + [878] = 878, + [879] = 879, + [880] = 148, + [881] = 154, + [882] = 882, [883] = 883, - [884] = 884, - [885] = 736, - [886] = 733, - [887] = 723, - [888] = 888, - [889] = 889, - [890] = 737, - [891] = 732, - [892] = 671, - [893] = 670, - [894] = 726, - [895] = 799, - [896] = 724, - [897] = 729, - [898] = 861, - [899] = 862, - [900] = 154, - [901] = 855, - [902] = 902, - [903] = 860, - [904] = 845, - [905] = 137, - [906] = 848, - [907] = 852, - [908] = 855, - [909] = 909, - [910] = 853, - [911] = 847, - [912] = 859, - [913] = 862, - [914] = 854, - [915] = 143, - [916] = 847, - [917] = 845, - [918] = 861, - [919] = 142, - [920] = 852, - [921] = 859, - [922] = 922, - [923] = 853, - [924] = 856, - [925] = 848, - [926] = 854, - [927] = 142, + [884] = 883, + [885] = 883, + [886] = 883, + [887] = 791, + [888] = 738, + [889] = 794, + [890] = 890, + [891] = 788, + [892] = 786, + [893] = 747, + [894] = 739, + [895] = 895, + [896] = 789, + [897] = 750, + [898] = 749, + [899] = 899, + [900] = 780, + [901] = 743, + [902] = 792, + [903] = 903, + [904] = 778, + [905] = 905, + [906] = 787, + [907] = 783, + [908] = 790, + [909] = 793, + [910] = 745, + [911] = 681, + [912] = 679, + [913] = 746, + [914] = 730, + [915] = 744, + [916] = 740, + [917] = 149, + [918] = 138, + [919] = 141, + [920] = 131, + [921] = 869, + [922] = 870, + [923] = 864, + [924] = 872, + [925] = 925, + [926] = 876, + [927] = 863, [928] = 928, - [929] = 902, - [930] = 902, - [931] = 856, - [932] = 902, - [933] = 144, - [934] = 131, - [935] = 154, - [936] = 137, - [937] = 143, - [938] = 131, - [939] = 860, - [940] = 144, - [941] = 94, - [942] = 102, - [943] = 106, - [944] = 89, - [945] = 95, - [946] = 78, - [947] = 85, - [948] = 91, - [949] = 93, - [950] = 100, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 769, - [960] = 778, - [961] = 763, - [962] = 774, - [963] = 963, - [964] = 770, - [965] = 777, - [966] = 768, - [967] = 767, - [968] = 766, - [969] = 765, - [970] = 771, - [971] = 772, - [972] = 771, - [973] = 766, - [974] = 768, + [929] = 878, + [930] = 879, + [931] = 138, + [932] = 873, + [933] = 872, + [934] = 870, + [935] = 869, + [936] = 928, + [937] = 871, + [938] = 868, + [939] = 862, + [940] = 879, + [941] = 863, + [942] = 875, + [943] = 876, + [944] = 865, + [945] = 864, + [946] = 946, + [947] = 154, + [948] = 871, + [949] = 868, + [950] = 131, + [951] = 865, + [952] = 154, + [953] = 878, + [954] = 862, + [955] = 873, + [956] = 928, + [957] = 149, + [958] = 148, + [959] = 875, + [960] = 928, + [961] = 961, + [962] = 148, + [963] = 141, + [964] = 126, + [965] = 95, + [966] = 125, + [967] = 110, + [968] = 127, + [969] = 103, + [970] = 114, + [971] = 83, + [972] = 105, + [973] = 121, + [974] = 974, [975] = 975, - [976] = 769, - [977] = 770, + [976] = 976, + [977] = 977, [978] = 978, - [979] = 975, - [980] = 763, - [981] = 975, - [982] = 106, - [983] = 102, - [984] = 94, - [985] = 767, - [986] = 100, - [987] = 772, - [988] = 95, - [989] = 989, - [990] = 765, - [991] = 78, - [992] = 777, - [993] = 93, - [994] = 89, - [995] = 995, - [996] = 91, - [997] = 85, - [998] = 778, - [999] = 975, - [1000] = 774, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 789, + [983] = 786, + [984] = 792, + [985] = 783, + [986] = 794, + [987] = 788, + [988] = 780, + [989] = 793, + [990] = 990, + [991] = 790, + [992] = 787, + [993] = 778, + [994] = 791, + [995] = 786, + [996] = 996, + [997] = 997, + [998] = 789, + [999] = 114, + [1000] = 125, + [1001] = 997, + [1002] = 791, + [1003] = 103, + [1004] = 126, + [1005] = 997, + [1006] = 127, [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, + [1008] = 792, + [1009] = 997, + [1010] = 121, [1011] = 1011, - [1012] = 1012, - [1013] = 1013, + [1012] = 783, + [1013] = 110, [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1019, - [1022] = 1022, - [1023] = 1022, - [1024] = 1024, + [1015] = 788, + [1016] = 95, + [1017] = 778, + [1018] = 105, + [1019] = 794, + [1020] = 787, + [1021] = 790, + [1022] = 83, + [1023] = 780, + [1024] = 793, [1025] = 1025, [1026] = 1026, [1027] = 1027, [1028] = 1028, [1029] = 1029, - [1030] = 768, + [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, [1035] = 1035, - [1036] = 767, + [1036] = 1036, [1037] = 1037, [1038] = 1038, [1039] = 1039, - [1040] = 769, - [1041] = 1034, - [1042] = 1031, - [1043] = 1029, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, [1044] = 1044, - [1045] = 766, - [1046] = 1031, - [1047] = 1047, - [1048] = 765, - [1049] = 1049, - [1050] = 774, - [1051] = 771, - [1052] = 1035, - [1053] = 770, - [1054] = 1031, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 777, - [1060] = 1029, - [1061] = 763, - [1062] = 1062, - [1063] = 772, + [1045] = 1045, + [1046] = 1046, + [1047] = 1044, + [1048] = 1048, + [1049] = 1046, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1052, + [1055] = 1053, + [1056] = 1052, + [1057] = 1051, + [1058] = 1053, + [1059] = 1051, + [1060] = 1051, + [1061] = 1050, + [1062] = 1052, + [1063] = 1063, [1064] = 1064, - [1065] = 1033, - [1066] = 778, + [1065] = 1065, + [1066] = 1066, [1067] = 1067, - [1068] = 1068, - [1069] = 1034, + [1068] = 783, + [1069] = 789, [1070] = 1070, - [1071] = 1035, - [1072] = 1072, - [1073] = 1029, - [1074] = 963, - [1075] = 1031, + [1071] = 1063, + [1072] = 792, + [1073] = 1073, + [1074] = 794, + [1075] = 780, [1076] = 1076, - [1077] = 1035, - [1078] = 1031, + [1077] = 793, + [1078] = 790, [1079] = 1079, - [1080] = 1033, - [1081] = 1034, + [1080] = 1080, + [1081] = 1081, [1082] = 1082, - [1083] = 1068, + [1083] = 1083, [1084] = 1084, - [1085] = 1033, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, + [1085] = 1085, + [1086] = 787, + [1087] = 778, + [1088] = 786, [1089] = 1089, - [1090] = 1090, - [1091] = 1091, + [1090] = 788, + [1091] = 791, [1092] = 1092, - [1093] = 1093, - [1094] = 1094, + [1093] = 990, + [1094] = 1050, [1095] = 1095, - [1096] = 1087, - [1097] = 1087, - [1098] = 1087, - [1099] = 1099, - [1100] = 1100, + [1096] = 1096, + [1097] = 1051, + [1098] = 1053, + [1099] = 1089, + [1100] = 1063, [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 1104, + [1104] = 1050, [1105] = 1105, [1106] = 1106, - [1107] = 1102, - [1108] = 1108, - [1109] = 1109, + [1107] = 1107, + [1108] = 1051, + [1109] = 1063, [1110] = 1110, - [1111] = 1087, + [1111] = 1111, [1112] = 1112, - [1113] = 739, + [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 864, + [1116] = 1116, [1117] = 1117, - [1118] = 883, - [1119] = 909, - [1120] = 922, - [1121] = 928, + [1118] = 1118, + [1119] = 752, + [1120] = 1115, + [1121] = 1121, [1122] = 1122, [1123] = 1123, - [1124] = 1124, + [1124] = 1122, [1125] = 1125, [1126] = 1126, [1127] = 1127, - [1128] = 1128, + [1128] = 1115, [1129] = 1129, [1130] = 1130, [1131] = 1131, - [1132] = 1129, - [1133] = 835, - [1134] = 1129, - [1135] = 1129, - [1136] = 1136, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1115, [1137] = 1137, - [1138] = 1138, - [1139] = 843, - [1140] = 1140, + [1138] = 1115, + [1139] = 1139, + [1140] = 899, [1141] = 1141, - [1142] = 1142, + [1142] = 882, [1143] = 1143, - [1144] = 1142, - [1145] = 1142, - [1146] = 1146, - [1147] = 1142, + [1144] = 773, + [1145] = 925, + [1146] = 946, + [1147] = 961, [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, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 823, + [1160] = 1157, + [1161] = 1157, + [1162] = 855, [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1167, + [1167] = 1157, [1168] = 1168, [1169] = 1169, [1170] = 1170, [1171] = 1171, [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, + [1173] = 1168, + [1174] = 1170, + [1175] = 1169, + [1176] = 1168, + [1177] = 1164, + [1178] = 1170, + [1179] = 1170, + [1180] = 1172, + [1181] = 1170, + [1182] = 1169, + [1183] = 1172, + [1184] = 1169, + [1185] = 1170, [1186] = 1186, [1187] = 1187, [1188] = 1188, [1189] = 1189, - [1190] = 1173, + [1190] = 1190, [1191] = 1191, [1192] = 1192, [1193] = 1193, - [1194] = 1179, - [1195] = 1191, + [1194] = 1194, + [1195] = 1195, [1196] = 1196, - [1197] = 717, + [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] = 1204, [1205] = 1205, - [1206] = 1161, + [1206] = 1206, [1207] = 1207, - [1208] = 1186, - [1209] = 1185, - [1210] = 1183, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, [1211] = 1211, - [1212] = 1182, - [1213] = 1181, - [1214] = 1178, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1177, + [1217] = 1217, [1218] = 1218, - [1219] = 1193, - [1220] = 1211, - [1221] = 1168, - [1222] = 717, - [1223] = 843, - [1224] = 1008, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1175, - [1228] = 1226, - [1229] = 1226, - [1230] = 1230, + [1227] = 1212, + [1228] = 1228, + [1229] = 1223, + [1230] = 1190, [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1225, - [1235] = 841, - [1236] = 1180, - [1237] = 1237, - [1238] = 1162, - [1239] = 831, - [1240] = 1232, - [1241] = 1017, - [1242] = 1242, - [1243] = 1243, - [1244] = 1163, - [1245] = 1226, - [1246] = 1207, - [1247] = 1164, - [1248] = 1170, - [1249] = 811, - [1250] = 1225, - [1251] = 1012, - [1252] = 1169, - [1253] = 812, - [1254] = 1237, - [1255] = 1232, - [1256] = 1256, - [1257] = 1166, - [1258] = 813, - [1259] = 1192, - [1260] = 834, - [1261] = 835, - [1262] = 1225, - [1263] = 816, - [1264] = 1165, - [1265] = 818, - [1266] = 1174, - [1267] = 1267, - [1268] = 1014, - [1269] = 1269, + [1232] = 1196, + [1233] = 706, + [1234] = 1197, + [1235] = 1198, + [1236] = 1199, + [1237] = 1207, + [1238] = 1200, + [1239] = 1212, + [1240] = 1201, + [1241] = 1202, + [1242] = 1207, + [1243] = 1212, + [1244] = 1203, + [1245] = 1204, + [1246] = 1205, + [1247] = 848, + [1248] = 1030, + [1249] = 1206, + [1250] = 823, + [1251] = 855, + [1252] = 1252, + [1253] = 1033, + [1254] = 1031, + [1255] = 845, + [1256] = 846, + [1257] = 1213, + [1258] = 706, + [1259] = 1034, + [1260] = 856, + [1261] = 857, + [1262] = 1214, + [1263] = 834, + [1264] = 860, + [1265] = 1215, + [1266] = 1266, + [1267] = 1209, + [1268] = 1218, + [1269] = 1231, [1270] = 1270, - [1271] = 1270, - [1272] = 1270, - [1273] = 1270, + [1271] = 847, + [1272] = 1210, + [1273] = 1273, [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1276, - [1279] = 1276, - [1280] = 1276, - [1281] = 864, - [1282] = 1277, - [1283] = 1277, - [1284] = 1277, + [1275] = 1270, + [1276] = 1274, + [1277] = 1216, + [1278] = 1274, + [1279] = 1266, + [1280] = 1270, + [1281] = 1270, + [1282] = 1282, + [1283] = 1208, + [1284] = 1284, [1285] = 1285, [1286] = 1286, [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, + [1288] = 1266, + [1289] = 1186, + [1290] = 1192, [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1289, - [1296] = 1296, + [1292] = 1252, + [1293] = 1194, + [1294] = 1274, + [1295] = 1193, + [1296] = 1187, [1297] = 1297, [1298] = 1298, - [1299] = 1289, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, + [1299] = 1299, + [1300] = 1298, + [1301] = 1298, + [1302] = 1298, [1303] = 1303, [1304] = 1304, - [1305] = 1304, - [1306] = 1306, - [1307] = 1307, + [1305] = 1305, + [1306] = 1305, + [1307] = 1305, [1308] = 1304, - [1309] = 1309, - [1310] = 1310, - [1311] = 1309, - [1312] = 1312, - [1313] = 1304, - [1314] = 1304, - [1315] = 1309, + [1309] = 1304, + [1310] = 1304, + [1311] = 1305, + [1312] = 882, + [1313] = 1313, + [1314] = 1314, + [1315] = 1315, [1316] = 1316, [1317] = 1317, [1318] = 1318, - [1319] = 1309, - [1320] = 1304, + [1319] = 1319, + [1320] = 1320, [1321] = 1321, [1322] = 1322, [1323] = 1323, [1324] = 1324, [1325] = 1325, - [1326] = 1326, + [1326] = 1322, [1327] = 1327, - [1328] = 1328, + [1328] = 1322, [1329] = 1329, [1330] = 1330, [1331] = 1331, [1332] = 1332, [1333] = 1333, - [1334] = 1334, + [1334] = 1333, [1335] = 1335, - [1336] = 1336, + [1336] = 1335, [1337] = 1337, - [1338] = 1338, + [1338] = 1335, [1339] = 1339, [1340] = 1340, - [1341] = 1327, + [1341] = 1333, [1342] = 1342, [1343] = 1343, [1344] = 1344, [1345] = 1345, - [1346] = 1346, - [1347] = 1327, - [1348] = 1348, - [1349] = 1349, + [1346] = 1335, + [1347] = 1333, + [1348] = 1333, + [1349] = 1333, [1350] = 1350, [1351] = 1351, [1352] = 1352, - [1353] = 1327, + [1353] = 1353, [1354] = 1354, [1355] = 1355, [1356] = 1356, [1357] = 1357, - [1358] = 1357, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1357, + [1358] = 1358, + [1359] = 1356, + [1360] = 1356, + [1361] = 1356, + [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, [1367] = 1367, [1368] = 1368, - [1369] = 1357, + [1369] = 1369, [1370] = 1370, [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1373, + [1375] = 1375, [1376] = 1376, - [1377] = 1373, - [1378] = 1376, - [1379] = 1373, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, [1380] = 1380, [1381] = 1381, [1382] = 1382, - [1383] = 1376, - [1384] = 1381, + [1383] = 1383, + [1384] = 1384, [1385] = 1385, [1386] = 1386, [1387] = 1387, - [1388] = 1376, - [1389] = 1381, + [1388] = 1388, + [1389] = 1389, [1390] = 1390, - [1391] = 1381, + [1391] = 1391, [1392] = 1392, [1393] = 1393, - [1394] = 1394, + [1394] = 1383, [1395] = 1395, - [1396] = 1396, + [1396] = 1383, [1397] = 1397, [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 1397, + [1401] = 1383, [1402] = 1402, - [1403] = 1396, - [1404] = 1396, - [1405] = 1397, - [1406] = 1402, - [1407] = 1396, - [1408] = 1408, + [1403] = 1403, + [1404] = 1402, + [1405] = 1405, + [1406] = 1403, + [1407] = 1407, + [1408] = 1405, [1409] = 1409, - [1410] = 1410, - [1411] = 1397, - [1412] = 1412, + [1410] = 1402, + [1411] = 1403, + [1412] = 1405, [1413] = 1413, - [1414] = 1402, - [1415] = 1415, + [1414] = 1403, + [1415] = 1405, [1416] = 1416, [1417] = 1402, [1418] = 1418, @@ -4596,27 +4636,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1427] = 1427, [1428] = 1428, [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, + [1430] = 1424, + [1431] = 1423, + [1432] = 1426, [1433] = 1433, [1434] = 1434, [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1439, + [1439] = 1424, [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, + [1441] = 1423, + [1442] = 1426, + [1443] = 1424, + [1444] = 1426, [1445] = 1445, - [1446] = 1446, + [1446] = 1423, [1447] = 1447, [1448] = 1448, [1449] = 1449, - [1450] = 1444, + [1450] = 1450, [1451] = 1451, [1452] = 1452, [1453] = 1453, @@ -4626,32 +4666,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1457] = 1457, [1458] = 1458, [1459] = 1459, - [1460] = 1459, - [1461] = 1459, + [1460] = 1460, + [1461] = 1461, [1462] = 1462, [1463] = 1463, [1464] = 1464, [1465] = 1465, - [1466] = 1444, + [1466] = 1466, [1467] = 1467, - [1468] = 1459, + [1468] = 1468, [1469] = 1469, - [1470] = 1459, - [1471] = 1444, - [1472] = 1444, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, - [1477] = 1459, + [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 1444, + [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, - [1485] = 1485, + [1484] = 1474, + [1485] = 1474, [1486] = 1486, [1487] = 1487, [1488] = 1488, @@ -4659,534 +4699,575 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1493, + [1493] = 1474, [1494] = 1494, - [1495] = 1495, - [1496] = 1496, + [1495] = 1474, + [1496] = 1479, [1497] = 1497, [1498] = 1498, - [1499] = 1499, + [1499] = 1479, [1500] = 1500, [1501] = 1501, [1502] = 1502, - [1503] = 1503, + [1503] = 1479, [1504] = 1504, - [1505] = 1505, + [1505] = 1474, [1506] = 1506, [1507] = 1507, [1508] = 1508, [1509] = 1509, - [1510] = 1505, - [1511] = 1504, + [1510] = 1479, + [1511] = 1479, [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 1514, - [1518] = 1514, + [1517] = 1517, + [1518] = 1518, [1519] = 1519, [1520] = 1520, [1521] = 1521, - [1522] = 1502, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1514, - [1527] = 1503, - [1528] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, [1529] = 1529, - [1530] = 1504, - [1531] = 1505, + [1530] = 1530, + [1531] = 1531, [1532] = 1532, [1533] = 1533, [1534] = 1534, - [1535] = 1503, + [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1514, + [1538] = 1538, [1539] = 1539, - [1540] = 1507, - [1541] = 1507, - [1542] = 1508, + [1540] = 1538, + [1541] = 1541, + [1542] = 1541, [1543] = 1543, - [1544] = 1502, - [1545] = 1507, + [1544] = 1544, + [1545] = 1545, [1546] = 1546, - [1547] = 1508, - [1548] = 1514, - [1549] = 1514, - [1550] = 1508, - [1551] = 1503, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1535, [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1505, - [1556] = 1515, + [1553] = 1545, + [1554] = 1543, + [1555] = 1555, + [1556] = 1544, [1557] = 1557, - [1558] = 1525, - [1559] = 1504, - [1560] = 1560, - [1561] = 1507, - [1562] = 1562, + [1558] = 1538, + [1559] = 1543, + [1560] = 1535, + [1561] = 1544, + [1562] = 1544, [1563] = 1563, - [1564] = 1515, + [1564] = 1564, [1565] = 1565, - [1566] = 1566, + [1566] = 1545, [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1565, - [1571] = 1566, + [1568] = 1538, + [1569] = 1538, + [1570] = 1570, + [1571] = 1544, [1572] = 1572, - [1573] = 1565, + [1573] = 1573, [1574] = 1574, - [1575] = 1566, - [1576] = 1572, - [1577] = 1577, + [1575] = 1565, + [1576] = 1541, + [1577] = 1548, [1578] = 1578, - [1579] = 1579, - [1580] = 1580, + [1579] = 1549, + [1580] = 1548, [1581] = 1581, [1582] = 1582, [1583] = 1583, - [1584] = 1568, - [1585] = 1566, - [1586] = 1586, - [1587] = 1572, - [1588] = 1588, - [1589] = 1589, + [1584] = 1584, + [1585] = 1585, + [1586] = 1549, + [1587] = 1535, + [1588] = 1545, + [1589] = 1543, [1590] = 1590, [1591] = 1591, - [1592] = 1578, + [1592] = 1541, [1593] = 1593, - [1594] = 1594, - [1595] = 1595, - [1596] = 1594, + [1594] = 1538, + [1595] = 1565, + [1596] = 1538, [1597] = 1597, [1598] = 1598, [1599] = 1599, - [1600] = 1577, - [1601] = 1572, + [1600] = 1600, + [1601] = 1601, [1602] = 1602, [1603] = 1603, - [1604] = 1580, - [1605] = 1566, - [1606] = 1568, - [1607] = 1594, - [1608] = 1578, - [1609] = 1577, - [1610] = 1413, + [1604] = 1604, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, [1611] = 1611, [1612] = 1612, [1613] = 1613, - [1614] = 1612, - [1615] = 1581, + [1614] = 1603, + [1615] = 1615, [1616] = 1616, [1617] = 1617, - [1618] = 1590, - [1619] = 1565, - [1620] = 1590, + [1618] = 1600, + [1619] = 1619, + [1620] = 1620, [1621] = 1621, - [1622] = 1594, + [1622] = 1622, [1623] = 1623, - [1624] = 1612, - [1625] = 1572, - [1626] = 1594, - [1627] = 1568, - [1628] = 1578, + [1624] = 1599, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, [1629] = 1629, [1630] = 1630, - [1631] = 1594, + [1631] = 1607, [1632] = 1632, [1633] = 1633, - [1634] = 1634, + [1634] = 1601, [1635] = 1635, - [1636] = 1577, + [1636] = 1636, [1637] = 1637, [1638] = 1638, - [1639] = 1578, + [1639] = 1620, [1640] = 1640, [1641] = 1641, - [1642] = 1617, - [1643] = 1581, - [1644] = 1568, + [1642] = 1642, + [1643] = 1623, + [1644] = 1599, [1645] = 1645, - [1646] = 1590, - [1647] = 1647, - [1648] = 1648, + [1646] = 1646, + [1647] = 1608, + [1648] = 1630, [1649] = 1649, - [1650] = 1611, - [1651] = 1617, - [1652] = 1572, - [1653] = 1566, - [1654] = 1612, - [1655] = 1568, - [1656] = 1656, - [1657] = 1657, - [1658] = 1658, - [1659] = 1640, + [1650] = 1650, + [1651] = 1651, + [1652] = 1607, + [1653] = 1617, + [1654] = 1654, + [1655] = 1655, + [1656] = 1610, + [1657] = 1620, + [1658] = 1623, + [1659] = 1599, [1660] = 1660, - [1661] = 1565, - [1662] = 1577, + [1661] = 1642, + [1662] = 1662, [1663] = 1663, - [1664] = 1613, - [1665] = 1665, - [1666] = 1666, - [1667] = 1590, - [1668] = 1590, - [1669] = 1669, - [1670] = 1670, - [1671] = 1671, - [1672] = 1567, - [1673] = 1595, + [1664] = 1640, + [1665] = 1610, + [1666] = 1620, + [1667] = 1623, + [1668] = 1599, + [1669] = 1642, + [1670] = 1662, + [1671] = 1663, + [1672] = 1640, + [1673] = 1673, [1674] = 1674, [1675] = 1675, - [1676] = 1676, - [1677] = 1677, - [1678] = 1613, - [1679] = 1583, - [1680] = 1611, - [1681] = 1578, - [1682] = 1577, - [1683] = 1565, - [1684] = 1595, - [1685] = 1685, - [1686] = 1580, + [1676] = 1640, + [1677] = 1435, + [1678] = 1610, + [1679] = 1679, + [1680] = 1680, + [1681] = 1681, + [1682] = 1662, + [1683] = 1663, + [1684] = 1654, + [1685] = 1620, + [1686] = 1623, [1687] = 1687, - [1688] = 1688, + [1688] = 1599, [1689] = 1689, - [1690] = 1690, - [1691] = 1691, - [1692] = 1690, - [1693] = 1693, - [1694] = 1687, - [1695] = 1689, - [1696] = 1696, - [1697] = 1697, + [1690] = 1642, + [1691] = 1662, + [1692] = 1654, + [1693] = 1663, + [1694] = 1662, + [1695] = 1695, + [1696] = 1642, + [1697] = 1663, [1698] = 1698, [1699] = 1699, [1700] = 1700, - [1701] = 1696, - [1702] = 1702, - [1703] = 1688, - [1704] = 1704, - [1705] = 1705, - [1706] = 1687, - [1707] = 1707, - [1708] = 1708, - [1709] = 1689, - [1710] = 1710, - [1711] = 1702, - [1712] = 1712, + [1701] = 1640, + [1702] = 1611, + [1703] = 1703, + [1704] = 1601, + [1705] = 1608, + [1706] = 1706, + [1707] = 1610, + [1708] = 1640, + [1709] = 1608, + [1710] = 1663, + [1711] = 1662, + [1712] = 1642, [1713] = 1713, - [1714] = 1714, + [1714] = 1675, [1715] = 1715, - [1716] = 1716, + [1716] = 1610, [1717] = 1717, - [1718] = 1699, - [1719] = 1719, - [1720] = 1719, - [1721] = 1696, - [1722] = 1702, - [1723] = 1688, + [1718] = 1617, + [1719] = 1603, + [1720] = 1620, + [1721] = 1623, + [1722] = 1630, + [1723] = 1723, [1724] = 1724, [1725] = 1725, [1726] = 1726, - [1727] = 1699, + [1727] = 1727, [1728] = 1728, - [1729] = 1719, - [1730] = 1702, + [1729] = 1729, + [1730] = 1730, [1731] = 1731, - [1732] = 1696, - [1733] = 1691, - [1734] = 1689, - [1735] = 1690, - [1736] = 1710, - [1737] = 1688, - [1738] = 1697, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1728, + [1738] = 1738, [1739] = 1739, - [1740] = 1690, - [1741] = 1689, - [1742] = 1717, - [1743] = 1702, - [1744] = 1719, - [1745] = 1716, - [1746] = 1699, + [1740] = 1739, + [1741] = 1741, + [1742] = 1742, + [1743] = 1734, + [1744] = 1744, + [1745] = 1730, + [1746] = 1734, [1747] = 1747, [1748] = 1748, - [1749] = 1749, - [1750] = 1697, - [1751] = 1751, - [1752] = 1752, - [1753] = 1753, - [1754] = 1690, - [1755] = 1699, - [1756] = 1717, - [1757] = 1702, - [1758] = 1758, - [1759] = 1716, - [1760] = 1696, - [1761] = 1761, - [1762] = 1699, - [1763] = 1699, - [1764] = 1687, - [1765] = 1688, - [1766] = 1766, - [1767] = 1691, - [1768] = 1716, - [1769] = 1702, - [1770] = 1697, - [1771] = 1717, - [1772] = 1717, + [1749] = 1739, + [1750] = 1741, + [1751] = 1734, + [1752] = 1731, + [1753] = 1725, + [1754] = 1730, + [1755] = 1729, + [1756] = 1727, + [1757] = 1726, + [1758] = 1729, + [1759] = 1736, + [1760] = 1760, + [1761] = 1731, + [1762] = 1739, + [1763] = 1725, + [1764] = 1764, + [1765] = 1765, + [1766] = 1741, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1735, + [1771] = 1771, + [1772] = 1731, [1773] = 1773, - [1774] = 1697, - [1775] = 1775, - [1776] = 1776, - [1777] = 1777, + [1774] = 1774, + [1775] = 1739, + [1776] = 1729, + [1777] = 1734, [1778] = 1778, [1779] = 1779, [1780] = 1780, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1787, - [1788] = 1788, + [1781] = 1731, + [1782] = 1725, + [1783] = 1730, + [1784] = 1729, + [1785] = 1726, + [1786] = 1727, + [1787] = 1769, + [1788] = 1725, [1789] = 1789, - [1790] = 1790, + [1790] = 1726, [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1791, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1795, - [1801] = 1801, - [1802] = 1782, - [1803] = 1803, - [1804] = 1804, + [1792] = 1735, + [1793] = 1769, + [1794] = 1725, + [1795] = 1728, + [1796] = 1769, + [1797] = 1741, + [1798] = 1735, + [1799] = 1728, + [1800] = 1800, + [1801] = 1769, + [1802] = 1769, + [1803] = 1725, + [1804] = 1728, [1805] = 1805, [1806] = 1806, - [1807] = 1783, + [1807] = 1769, [1808] = 1808, [1809] = 1809, - [1810] = 1796, + [1810] = 1735, [1811] = 1811, [1812] = 1812, [1813] = 1813, [1814] = 1814, - [1815] = 1815, - [1816] = 1796, + [1815] = 1030, + [1816] = 1816, [1817] = 1817, [1818] = 1818, - [1819] = 1795, - [1820] = 1775, + [1819] = 1819, + [1820] = 1820, [1821] = 1821, [1822] = 1822, [1823] = 1823, - [1824] = 1793, - [1825] = 1783, + [1824] = 1824, + [1825] = 1825, [1826] = 1826, [1827] = 1827, [1828] = 1828, [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 1796, - [1833] = 1795, + [1830] = 1813, + [1831] = 1816, + [1832] = 1822, + [1833] = 1816, [1834] = 1834, - [1835] = 1783, - [1836] = 1836, + [1835] = 1835, + [1836] = 1818, [1837] = 1837, - [1838] = 1838, - [1839] = 1793, + [1838] = 1031, + [1839] = 1839, [1840] = 1840, - [1841] = 1787, - [1842] = 1793, - [1843] = 1828, - [1844] = 1844, - [1845] = 1822, - [1846] = 1792, - [1847] = 1781, - [1848] = 1775, - [1849] = 1849, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1816, + [1845] = 1845, + [1846] = 1843, + [1847] = 1847, + [1848] = 1848, + [1849] = 1823, [1850] = 1850, - [1851] = 1799, + [1851] = 1823, [1852] = 1852, - [1853] = 1809, - [1854] = 1789, - [1855] = 1834, - [1856] = 1784, - [1857] = 1783, + [1853] = 1837, + [1854] = 1824, + [1855] = 1843, + [1856] = 1856, + [1857] = 1840, [1858] = 1858, [1859] = 1859, - [1860] = 1860, - [1861] = 1801, - [1862] = 1008, + [1860] = 1843, + [1861] = 1861, + [1862] = 1862, [1863] = 1863, - [1864] = 1864, + [1864] = 1826, [1865] = 1865, - [1866] = 1866, - [1867] = 1867, + [1866] = 1823, + [1867] = 1822, [1868] = 1868, [1869] = 1869, - [1870] = 1870, - [1871] = 1871, + [1870] = 1859, + [1871] = 1863, [1872] = 1872, [1873] = 1840, - [1874] = 1874, - [1875] = 1812, - [1876] = 1796, + [1874] = 1843, + [1875] = 1875, + [1876] = 1823, [1877] = 1877, - [1878] = 1012, + [1878] = 1878, [1879] = 1879, - [1880] = 1782, + [1880] = 1880, [1881] = 1881, - [1882] = 1882, + [1882] = 1816, [1883] = 1883, [1884] = 1884, - [1885] = 1809, - [1886] = 1882, - [1887] = 1782, + [1885] = 1885, + [1886] = 1885, + [1887] = 1887, [1888] = 1888, - [1889] = 1889, + [1889] = 1888, [1890] = 1890, - [1891] = 1795, - [1892] = 1860, + [1891] = 1891, + [1892] = 1869, [1893] = 1893, - [1894] = 1894, - [1895] = 1879, - [1896] = 1822, - [1897] = 1795, - [1898] = 1805, + [1894] = 1890, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, [1899] = 1899, - [1900] = 1900, + [1900] = 1840, [1901] = 1901, [1902] = 1902, - [1903] = 1791, - [1904] = 1850, - [1905] = 1905, + [1903] = 1903, + [1904] = 1826, + [1905] = 1890, [1906] = 1906, - [1907] = 1907, - [1908] = 1812, - [1909] = 1799, - [1910] = 670, - [1911] = 1801, - [1912] = 1789, + [1907] = 1840, + [1908] = 1908, + [1909] = 1818, + [1910] = 1910, + [1911] = 1837, + [1912] = 1912, [1913] = 1913, - [1914] = 1860, + [1914] = 1914, [1915] = 1915, - [1916] = 1916, - [1917] = 1837, - [1918] = 1838, + [1916] = 1843, + [1917] = 1908, + [1918] = 1034, [1919] = 1919, - [1920] = 1801, - [1921] = 1799, - [1922] = 1805, - [1923] = 1781, - [1924] = 1806, - [1925] = 1809, - [1926] = 1792, - [1927] = 1796, - [1928] = 1928, + [1920] = 1913, + [1921] = 1921, + [1922] = 1922, + [1923] = 1914, + [1924] = 1924, + [1925] = 1814, + [1926] = 1922, + [1927] = 1822, + [1928] = 1816, [1929] = 1929, [1930] = 1930, - [1931] = 1812, + [1931] = 1931, [1932] = 1932, - [1933] = 1933, - [1934] = 1775, - [1935] = 1822, - [1936] = 1936, - [1937] = 1793, - [1938] = 1884, + [1933] = 1848, + [1934] = 681, + [1935] = 1848, + [1936] = 1818, + [1937] = 1937, + [1938] = 1938, [1939] = 1939, - [1940] = 1882, - [1941] = 1884, - [1942] = 1796, - [1943] = 1943, - [1944] = 1944, - [1945] = 1883, - [1946] = 1809, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1922, + [1944] = 1914, + [1945] = 1945, + [1946] = 1946, [1947] = 1947, [1948] = 1837, - [1949] = 1838, + [1949] = 1949, [1950] = 1950, - [1951] = 1882, - [1952] = 1795, - [1953] = 1791, - [1954] = 1792, - [1955] = 1955, - [1956] = 1782, + [1951] = 1908, + [1952] = 1952, + [1953] = 1859, + [1954] = 1863, + [1955] = 1848, + [1956] = 1956, [1957] = 1957, - [1958] = 1958, - [1959] = 1959, + [1958] = 1878, + [1959] = 1879, [1960] = 1960, - [1961] = 1961, - [1962] = 1962, - [1963] = 1963, + [1961] = 1840, + [1962] = 1823, + [1963] = 1824, [1964] = 1964, - [1965] = 1965, + [1965] = 1826, [1966] = 1966, - [1967] = 1936, - [1968] = 1968, - [1969] = 1837, + [1967] = 1887, + [1968] = 1869, + [1969] = 1969, [1970] = 1970, [1971] = 1971, - [1972] = 1882, - [1973] = 1837, - [1974] = 1837, - [1975] = 671, + [1972] = 1972, + [1973] = 1859, + [1974] = 1974, + [1975] = 1885, [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, - [1990] = 1990, - [1991] = 1991, + [1977] = 1977, + [1978] = 1978, + [1979] = 1814, + [1980] = 1848, + [1981] = 1822, + [1982] = 1813, + [1983] = 1983, + [1984] = 1821, + [1985] = 1985, + [1986] = 1888, + [1987] = 1987, + [1988] = 1863, + [1989] = 1878, + [1990] = 1879, + [1991] = 1940, [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] = 1014, + [1993] = 1817, + [1994] = 1823, + [1995] = 1887, + [1996] = 1996, + [1997] = 1033, + [1998] = 1998, + [1999] = 1811, + [2000] = 1890, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 1940, [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, + [2007] = 1956, + [2008] = 2008, + [2009] = 1817, + [2010] = 1878, + [2011] = 1811, + [2012] = 1890, + [2013] = 1852, + [2014] = 1878, + [2015] = 1878, + [2016] = 1966, + [2017] = 1840, + [2018] = 2018, + [2019] = 1931, + [2020] = 1824, + [2021] = 2021, + [2022] = 2022, + [2023] = 1956, + [2024] = 1908, + [2025] = 2025, + [2026] = 1890, + [2027] = 679, + [2028] = 2028, + [2029] = 2029, + [2030] = 1937, + [2031] = 1834, + [2032] = 2032, + [2033] = 1931, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 1848, + [2038] = 1887, + [2039] = 1922, + [2040] = 2021, + [2041] = 1914, + [2042] = 2021, + [2043] = 1937, + [2044] = 1888, + [2045] = 1837, + [2046] = 1885, + [2047] = 2047, + [2048] = 1843, + [2049] = 1834, + [2050] = 1834, + [2051] = 1937, + [2052] = 2052, + [2053] = 2053, + [2054] = 2054, + [2055] = 1813, + [2056] = 2021, + [2057] = 1879, + [2058] = 1878, + [2059] = 2021, + [2060] = 2060, + [2061] = 2061, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -8888,142 +8969,144 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(120); - if (lookahead == '!') ADVANCE(187); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(74); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(124); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(195); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(253); - if (lookahead == '/') ADVANCE(202); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(233); + if (eof) ADVANCE(123); + if (lookahead == '!') ADVANCE(184); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(77); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(127); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); + if (lookahead == '+') ADVANCE(192); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(187); + if (lookahead == '.') ADVANCE(250); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(230); if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(234); - if (lookahead == '^') ADVANCE(210); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(118) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(207); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(121) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 1: - if (lookahead == '\n') SKIP(42) + if (lookahead == '\n') SKIP(45) END_STATE(); case 2: - if (lookahead == '\n') SKIP(42) + if (lookahead == '\n') SKIP(45) if (lookahead == '\r') SKIP(1) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 3: - if (lookahead == '\n') SKIP(45) + if (lookahead == '\n') SKIP(48) END_STATE(); case 4: - if (lookahead == '\n') SKIP(45) + if (lookahead == '\n') SKIP(48) if (lookahead == '\r') SKIP(3) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 5: - if (lookahead == '\n') SKIP(44) + if (lookahead == '\n') SKIP(47) END_STATE(); case 6: - if (lookahead == '\n') SKIP(44) + if (lookahead == '\n') SKIP(47) if (lookahead == '\r') SKIP(5) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 7: - if (lookahead == '\n') SKIP(46) + if (lookahead == '\n') SKIP(49) END_STATE(); case 8: - if (lookahead == '\n') SKIP(46) + if (lookahead == '\n') SKIP(49) if (lookahead == '\r') SKIP(7) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 9: - if (lookahead == '\n') SKIP(48) + if (lookahead == '\n') SKIP(51) END_STATE(); case 10: - if (lookahead == '\n') SKIP(48) + if (lookahead == '\n') SKIP(51) if (lookahead == '\r') SKIP(9) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 11: - if (lookahead == '\n') SKIP(51) + if (lookahead == '\n') SKIP(54) END_STATE(); case 12: - if (lookahead == '\n') SKIP(51) + if (lookahead == '\n') SKIP(54) if (lookahead == '\r') SKIP(11) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 13: - if (lookahead == '\n') SKIP(52) + if (lookahead == '\n') SKIP(55) END_STATE(); case 14: - if (lookahead == '\n') SKIP(52) + if (lookahead == '\n') SKIP(55) if (lookahead == '\r') SKIP(13) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 15: - if (lookahead == '\n') SKIP(56) + if (lookahead == '\n') SKIP(59) END_STATE(); case 16: - if (lookahead == '\n') SKIP(56) + if (lookahead == '\n') SKIP(59) if (lookahead == '\r') SKIP(15) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 17: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(52) END_STATE(); case 18: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(52) if (lookahead == '\r') SKIP(17) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 19: - if (lookahead == '\n') SKIP(50) + if (lookahead == '\n') SKIP(53) END_STATE(); case 20: - if (lookahead == '\n') SKIP(50) + if (lookahead == '\n') SKIP(53) if (lookahead == '\r') SKIP(19) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 21: - if (lookahead == '\n') SKIP(47) + if (lookahead == '\n') SKIP(50) END_STATE(); case 22: - if (lookahead == '\n') SKIP(47) + if (lookahead == '\n') SKIP(50) if (lookahead == '\r') SKIP(21) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 23: if (lookahead == '\n') SKIP(25) @@ -9033,739 +9116,788 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(23) END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(129); - if (lookahead == '!') ADVANCE(67); - if (lookahead == '%') ADVANCE(203); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '(') ADVANCE(185); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '+') ADVANCE(194); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '<') ADVANCE(221); - if (lookahead == '=') ADVANCE(68); - if (lookahead == '>') ADVANCE(217); + if (lookahead == '\n') ADVANCE(132); + if (lookahead == '!') ADVANCE(70); + if (lookahead == '%') ADVANCE(200); + if (lookahead == '&') ADVANCE(209); + if (lookahead == '(') ADVANCE(182); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '+') ADVANCE(191); + if (lookahead == '-') ADVANCE(186); + if (lookahead == '/') ADVANCE(198); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(214); if (lookahead == '\\') SKIP(24) - if (lookahead == '^') ADVANCE(209); - if (lookahead == '|') ADVANCE(208); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '^') ADVANCE(206); + if (lookahead == '|') ADVANCE(205); + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(25) END_STATE(); case 26: - if (lookahead == '\n') SKIP(55) + if (lookahead == '\n') SKIP(58) END_STATE(); case 27: - if (lookahead == '\n') SKIP(55) + if (lookahead == '\n') SKIP(58) if (lookahead == '\r') SKIP(26) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 28: - if (lookahead == '\n') SKIP(54) + if (lookahead == '\n') SKIP(57) END_STATE(); case 29: - if (lookahead == '\n') SKIP(54) + if (lookahead == '\n') SKIP(57) if (lookahead == '\r') SKIP(28) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 30: - if (lookahead == '\n') SKIP(57) - 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(115); - if (lookahead == 'u') ADVANCE(107); - if (lookahead == 'x') ADVANCE(103); - 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 == '(') ADVANCE(124); + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '\r') ADVANCE(34); + if (lookahead == '(') ADVANCE(127); if (lookahead == '/') ADVANCE(147); if (lookahead == '\\') ADVANCE(145); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(65) + if (lookahead == '\t' || + lookahead == ' ') SKIP(68) if (lookahead != 0) ADVANCE(148); END_STATE(); - case 33: - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(36); + case 31: + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '\r') ADVANCE(34); if (lookahead == '/') ADVANCE(147); if (lookahead == '\\') ADVANCE(145); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(65) + if (lookahead == '\t' || + lookahead == ' ') SKIP(68) if (lookahead != 0) ADVANCE(148); END_STATE(); - case 34: - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(35); - if (lookahead == '(') ADVANCE(185); - if (lookahead == '/') ADVANCE(59); + case 32: + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '\r') ADVANCE(33); + if (lookahead == '(') ADVANCE(182); + if (lookahead == '/') ADVANCE(62); if (lookahead == '\\') SKIP(39) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(58) + if (lookahead == '\t' || + lookahead == ' ') SKIP(61) END_STATE(); - case 35: - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '(') ADVANCE(185); - if (lookahead == '/') ADVANCE(59); + case 33: + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '(') ADVANCE(182); + if (lookahead == '/') ADVANCE(62); if (lookahead == '\\') SKIP(39) - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(61) END_STATE(); - case 36: - if (lookahead == '\n') ADVANCE(122); + case 34: + if (lookahead == '\n') ADVANCE(125); if (lookahead == '/') ADVANCE(147); if (lookahead == '\\') ADVANCE(145); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65) + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(68) if (lookahead != 0) ADVANCE(148); END_STATE(); + case 35: + if (lookahead == '\n') SKIP(56) + if (lookahead == '"') ADVANCE(283); + if (lookahead == '/') ADVANCE(284); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(285); + if (lookahead != 0) ADVANCE(286); + END_STATE(); + case 36: + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(287); + if (lookahead == 'U') ADVANCE(118); + if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'x') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(290); + if (lookahead != 0) ADVANCE(287); + END_STATE(); case 37: - if (lookahead == '\n') SKIP(53) - if (lookahead == '"') ADVANCE(286); - if (lookahead == '/') ADVANCE(287); - if (lookahead == '\\') ADVANCE(31); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(290); - if (lookahead != 0) ADVANCE(291); + if (lookahead == '\n') SKIP(60) + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '/') ADVANCE(277); + if (lookahead == '\\') ADVANCE(276); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(278); + if (lookahead != 0) ADVANCE(275); END_STATE(); case 38: - if (lookahead == '\n') SKIP(58) + if (lookahead == '\n') SKIP(61) END_STATE(); case 39: - if (lookahead == '\n') SKIP(58) + if (lookahead == '\n') SKIP(61) if (lookahead == '\r') SKIP(38) END_STATE(); case 40: - if (lookahead == '\n') SKIP(43) + if (lookahead == '\n') ADVANCE(63); + if (lookahead == '\r') ADVANCE(41); + if (lookahead == '*') ADVANCE(318); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 41: - if (lookahead == '\n') SKIP(43) - if (lookahead == '\r') SKIP(40) - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == '\n') ADVANCE(63); + if (lookahead == '*') ADVANCE(318); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(187); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(74); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(195); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(253); - if (lookahead == '/') ADVANCE(202); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(233); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(234); - if (lookahead == '^') ADVANCE(210); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == '\n') ADVANCE(311); + if (lookahead == '\r') ADVANCE(309); + if (lookahead == '\\') ADVANCE(313); + if (lookahead != 0) ADVANCE(312); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(187); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(82); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(195); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(253); - if (lookahead == '/') ADVANCE(202); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(232); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == ']') ADVANCE(234); - if (lookahead == '^') ADVANCE(210); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(43) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == '\n') SKIP(46) END_STATE(); case 44: - if (lookahead == '!') ADVANCE(186); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(74); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '&') ADVANCE(211); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '+') ADVANCE(196); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ':') ADVANCE(66); - if (lookahead == ';') ADVANCE(226); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(72); - if (lookahead == '\\') ADVANCE(6); - if (lookahead == ']') ADVANCE(73); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == '\n') SKIP(46) + if (lookahead == '\r') SKIP(43) + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 45: - if (lookahead == '!') ADVANCE(186); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(78); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '&') ADVANCE(211); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '+') ADVANCE(196); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(254); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '=') ADVANCE(235); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(233); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(234); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(184); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(77); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); + if (lookahead == '+') ADVANCE(192); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(187); + if (lookahead == '.') ADVANCE(250); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(230); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(207); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(45) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 46: - if (lookahead == '!') ADVANCE(186); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(76); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '&') ADVANCE(211); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ';') ADVANCE(226); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(72); - if (lookahead == '\\') ADVANCE(8); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(184); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(85); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); + if (lookahead == '+') ADVANCE(192); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(187); + if (lookahead == '.') ADVANCE(250); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(229); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(207); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(46) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 47: - if (lookahead == '!') ADVANCE(186); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(193); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(259); - if (lookahead == 'L') ADVANCE(307); - if (lookahead == 'U') ADVANCE(308); - if (lookahead == '\\') ADVANCE(22); - if (lookahead == 'u') ADVANCE(306); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(183); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(77); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '&') ADVANCE(208); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '+') ADVANCE(193); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(188); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(223); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(6); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 48: - if (lookahead == '!') ADVANCE(67); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(82); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(252); - if (lookahead == '/') ADVANCE(202); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == 'L') ADVANCE(299); - if (lookahead == 'U') ADVANCE(301); - if (lookahead == '[') ADVANCE(233); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(234); - if (lookahead == '^') ADVANCE(210); - if (lookahead == 'u') ADVANCE(303); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(183); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(81); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '&') ADVANCE(208); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '+') ADVANCE(193); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(188); + if (lookahead == '.') ADVANCE(251); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '=') ADVANCE(232); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(230); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(231); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(48) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 49: - if (lookahead == '!') ADVANCE(67); - if (lookahead == '#') ADVANCE(82); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(252); - if (lookahead == '/') ADVANCE(202); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == '[') ADVANCE(233); - if (lookahead == '\\') ADVANCE(18); - if (lookahead == ']') ADVANCE(234); - if (lookahead == '^') ADVANCE(210); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(183); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(79); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '&') ADVANCE(208); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '+') ADVANCE(193); + if (lookahead == '-') ADVANCE(188); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(223); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(8); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(49) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 50: - if (lookahead == '!') ADVANCE(67); - if (lookahead == '#') ADVANCE(82); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(251); - if (lookahead == '/') ADVANCE(202); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == '[') ADVANCE(232); - if (lookahead == '\\') ADVANCE(20); - if (lookahead == ']') ADVANCE(73); - if (lookahead == '^') ADVANCE(210); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(183); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(190); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '0') ADVANCE(256); + if (lookahead == 'L') ADVANCE(302); + if (lookahead == 'U') ADVANCE(303); + if (lookahead == '\\') ADVANCE(22); + if (lookahead == 'u') ADVANCE(301); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(50) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 51: - if (lookahead == '!') ADVANCE(67); - if (lookahead == '#') ADVANCE(75); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(252); - if (lookahead == '/') ADVANCE(202); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == '[') ADVANCE(233); - if (lookahead == '\\') ADVANCE(12); - if (lookahead == '^') ADVANCE(210); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(70); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(85); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); + if (lookahead == '+') ADVANCE(194); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(189); + if (lookahead == '.') ADVANCE(249); + if (lookahead == '/') ADVANCE(199); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == 'L') ADVANCE(294); + if (lookahead == 'U') ADVANCE(296); + if (lookahead == '[') ADVANCE(230); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(207); + if (lookahead == 'u') ADVANCE(298); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(51) END_STATE(); case 52: - if (lookahead == '!') ADVANCE(67); - if (lookahead == '#') ADVANCE(77); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(203); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(199); + if (lookahead == '!') ADVANCE(70); + if (lookahead == '#') ADVANCE(85); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); if (lookahead == '+') ADVANCE(194); - if (lookahead == ',') ADVANCE(126); + if (lookahead == ',') ADVANCE(129); if (lookahead == '-') ADVANCE(189); - if (lookahead == '/') ADVANCE(201); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(221); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '[') ADVANCE(233); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == '^') ADVANCE(209); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '|') ADVANCE(208); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '.') ADVANCE(249); + if (lookahead == '/') ADVANCE(199); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == '[') ADVANCE(230); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(207); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(52) END_STATE(); case 53: - if (lookahead == '"') ADVANCE(286); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') ADVANCE(31); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(70); + if (lookahead == '#') ADVANCE(85); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); + if (lookahead == '+') ADVANCE(194); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(189); + if (lookahead == '.') ADVANCE(248); + if (lookahead == '/') ADVANCE(199); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == '[') ADVANCE(229); + if (lookahead == '\\') ADVANCE(20); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(207); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(53) END_STATE(); case 54: - if (lookahead == '"') ADVANCE(286); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '<') ADVANCE(69); - if (lookahead == 'L') ADVANCE(299); - if (lookahead == 'U') ADVANCE(301); - if (lookahead == '\\') ADVANCE(29); - if (lookahead == 'u') ADVANCE(303); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(70); + if (lookahead == '#') ADVANCE(78); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); + if (lookahead == '+') ADVANCE(194); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(189); + if (lookahead == '.') ADVANCE(249); + if (lookahead == '/') ADVANCE(199); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == '[') ADVANCE(230); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == '^') ADVANCE(207); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(54) END_STATE(); case 55: - if (lookahead == '#') ADVANCE(92); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(310); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '}') ADVANCE(231); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(70); + if (lookahead == '#') ADVANCE(80); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(200); + if (lookahead == '&') ADVANCE(209); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '+') ADVANCE(191); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(186); + if (lookahead == '/') ADVANCE(198); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(214); + if (lookahead == '[') ADVANCE(230); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '^') ADVANCE(206); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '|') ADVANCE(205); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(55) END_STATE(); case 56: - if (lookahead == '#') ADVANCE(79); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(310); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '[') ADVANCE(72); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == '}') ADVANCE(231); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '"') ADVANCE(283); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(56) END_STATE(); case 57: - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') ADVANCE(31); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '"') ADVANCE(283); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '<') ADVANCE(72); + if (lookahead == 'L') ADVANCE(294); + if (lookahead == 'U') ADVANCE(296); + if (lookahead == '\\') ADVANCE(29); + if (lookahead == 'u') ADVANCE(298); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(57) END_STATE(); case 58: - if (lookahead == '(') ADVANCE(185); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') SKIP(39) - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(95); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(305); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(58) END_STATE(); case 59: - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(315); + if (lookahead == '#') ADVANCE(82); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(305); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(59) END_STATE(); case 60: - if (lookahead == '*') ADVANCE(60); - if (lookahead == '/') ADVANCE(311); - if (lookahead != 0) ADVANCE(61); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(60) END_STATE(); case 61: - if (lookahead == '*') ADVANCE(60); - if (lookahead != 0) ADVANCE(61); + if (lookahead == '(') ADVANCE(182); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '\\') SKIP(39) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(61) END_STATE(); case 62: - if (lookahead == '*') ADVANCE(60); - if (lookahead != 0) ADVANCE(143); + if (lookahead == '*') ADVANCE(315); + if (lookahead == '/') ADVANCE(306); END_STATE(); case 63: - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '/') ADVANCE(65); + if (lookahead == '\\') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(63); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 64: - if (lookahead == '.') ADVANCE(125); + if (lookahead == '*') ADVANCE(318); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 65: - if (lookahead == '/') ADVANCE(147); - if (lookahead == '\\') ADVANCE(145); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65) - if (lookahead != 0) ADVANCE(148); + if (lookahead == '*') ADVANCE(316); + if (lookahead == '/') ADVANCE(307); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 66: - if (lookahead == ':') ADVANCE(227); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(254); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(255); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(264); END_STATE(); case 67: - if (lookahead == '=') ADVANCE(215); + if (lookahead == '.') ADVANCE(128); END_STATE(); case 68: - if (lookahead == '=') ADVANCE(214); + if (lookahead == '/') ADVANCE(147); + if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(68) + if (lookahead != 0) ADVANCE(148); END_STATE(); case 69: - if (lookahead == '>') ADVANCE(296); - if (lookahead == '\\') ADVANCE(70); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(69); + if (lookahead == ':') ADVANCE(224); END_STATE(); case 70: - if (lookahead == '>') ADVANCE(297); - if (lookahead == '\\') ADVANCE(70); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(69); + if (lookahead == '=') ADVANCE(212); END_STATE(); case 71: - if (lookahead == 'U') ADVANCE(114); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == '=') ADVANCE(211); END_STATE(); case 72: - if (lookahead == '[') ADVANCE(228); + if (lookahead == '>') ADVANCE(291); + if (lookahead == '\\') ADVANCE(73); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(72); END_STATE(); case 73: - if (lookahead == ']') ADVANCE(229); + if (lookahead == '>') ADVANCE(292); + if (lookahead == '\\') ADVANCE(73); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(72); END_STATE(); case 74: - if (lookahead == 'd') ADVANCE(159); - if (lookahead == 'e') ADVANCE(179); - if (lookahead == 'i') ADVANCE(167); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + if (lookahead == 'U') ADVANCE(117); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 75: - if (lookahead == 'd') ADVANCE(159); - if (lookahead == 'e') ADVANCE(179); - if (lookahead == 'i') ADVANCE(168); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(75); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + if (lookahead == '[') ADVANCE(225); END_STATE(); case 76: - if (lookahead == 'd') ADVANCE(159); - if (lookahead == 'e') ADVANCE(181); - if (lookahead == 'i') ADVANCE(167); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + if (lookahead == ']') ADVANCE(226); END_STATE(); case 77: - if (lookahead == 'd') ADVANCE(159); - if (lookahead == 'e') ADVANCE(181); - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'd') ADVANCE(156); + if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'i') ADVANCE(164); if (lookahead == '\t' || lookahead == ' ') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 78: - if (lookahead == 'd') ADVANCE(159); - if (lookahead == 'i') ADVANCE(167); + if (lookahead == 'd') ADVANCE(156); + if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'i') ADVANCE(165); if (lookahead == '\t' || lookahead == ' ') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 79: - if (lookahead == 'd') ADVANCE(159); - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'd') ADVANCE(156); + if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'i') ADVANCE(164); if (lookahead == '\t' || lookahead == ' ') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 80: - if (lookahead == 'd') ADVANCE(91); + if (lookahead == 'd') ADVANCE(156); + if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'i') ADVANCE(165); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 81: - if (lookahead == 'd') ADVANCE(85); + if (lookahead == 'd') ADVANCE(156); + if (lookahead == 'i') ADVANCE(164); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'd') ADVANCE(156); + if (lookahead == 'i') ADVANCE(165); if (lookahead == '\t' || lookahead == ' ') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'd') ADVANCE(94); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(88); + if (lookahead == 'd') ADVANCE(88); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(89); + if (lookahead == 'e') ADVANCE(96); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(85); END_STATE(); case 86: - if (lookahead == 'f') ADVANCE(136); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 87: - if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'e') ADVANCE(91); END_STATE(); case 88: - if (lookahead == 'f') ADVANCE(138); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 89: - if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'f') ADVANCE(139); END_STATE(); case 90: - if (lookahead == 'i') ADVANCE(86); - if (lookahead == 's') ADVANCE(83); + if (lookahead == 'f') ADVANCE(133); END_STATE(); case 91: - if (lookahead == 'i') ADVANCE(87); + if (lookahead == 'f') ADVANCE(141); END_STATE(); case 92: - if (lookahead == 'i') ADVANCE(168); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(92); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + if (lookahead == 'f') ADVANCE(143); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(90); - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'i') ADVANCE(89); + if (lookahead == 's') ADVANCE(86); END_STATE(); case 94: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == 'i') ADVANCE(90); END_STATE(); case 95: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); + if (lookahead == 'i') ADVANCE(165); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 96: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); + if (lookahead == 'l') ADVANCE(93); + if (lookahead == 'n') ADVANCE(83); END_STATE(); case 97: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(310); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 98: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(253); END_STATE(); case 99: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(264); END_STATE(); case 100: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(262); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(305); END_STATE(); case 101: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(292); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(261); END_STATE(); case 102: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(97); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(264); END_STATE(); case 103: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(259); END_STATE(); case 104: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(287); END_STATE(); case 105: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); END_STATE(); case 106: if (('0' <= lookahead && lookahead <= '9') || @@ -9818,252 +9950,247 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 116: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + END_STATE(); + case 117: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + END_STATE(); + case 118: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + END_STATE(); + case 119: if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(315); - if (lookahead == '\r') ADVANCE(319); - if (lookahead == '\\') ADVANCE(317); + lookahead != '\\') ADVANCE(312); + if (lookahead == '\r') ADVANCE(314); + if (lookahead == '\\') ADVANCE(313); END_STATE(); - case 117: + case 120: if (lookahead != 0 && lookahead != '*') ADVANCE(148); END_STATE(); - case 118: - if (eof) ADVANCE(120); - if (lookahead == '!') ADVANCE(187); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(74); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(213); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(195); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(253); - if (lookahead == '/') ADVANCE(202); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(236); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(238); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(233); + case 121: + if (eof) ADVANCE(123); + if (lookahead == '!') ADVANCE(184); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(77); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '%') ADVANCE(201); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(197); + if (lookahead == '+') ADVANCE(192); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(187); + if (lookahead == '.') ADVANCE(250); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(213); + if (lookahead == '?') ADVANCE(235); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(230); if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(234); - if (lookahead == '^') ADVANCE(210); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '|') ADVANCE(207); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(118) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(207); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '|') ADVANCE(204); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(121) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); - case 119: - if (eof) ADVANCE(120); - if (lookahead == '!') ADVANCE(186); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '#') ADVANCE(78); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(310); - if (lookahead == '&') ADVANCE(211); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '(') ADVANCE(185); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '+') ADVANCE(196); - if (lookahead == ',') ADVANCE(126); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(254); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(259); - if (lookahead == ':') ADVANCE(237); - if (lookahead == ';') ADVANCE(226); - if (lookahead == '=') ADVANCE(235); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '[') ADVANCE(233); + case 122: + if (eof) ADVANCE(123); + if (lookahead == '!') ADVANCE(183); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '#') ADVANCE(81); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(305); + if (lookahead == '&') ADVANCE(208); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(130); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '+') ADVANCE(193); + if (lookahead == ',') ADVANCE(129); + if (lookahead == '-') ADVANCE(188); + if (lookahead == '.') ADVANCE(251); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(234); + if (lookahead == ';') ADVANCE(223); + if (lookahead == '=') ADVANCE(232); + if (lookahead == 'L') ADVANCE(293); + if (lookahead == 'U') ADVANCE(295); + if (lookahead == '[') ADVANCE(230); if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(234); - if (lookahead == 'u') ADVANCE(302); - if (lookahead == '{') ADVANCE(230); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(188); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(119) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == ']') ADVANCE(231); + if (lookahead == 'u') ADVANCE(297); + if (lookahead == '{') ADVANCE(227); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(122) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); - case 120: + case 123: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 121: + case 124: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 122: + case 125: ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); - case 123: + case 126: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 124: + case 127: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 125: + case 128: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 126: + case 129: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 127: + case 130: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 128: + case 131: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(163); - if (lookahead == 'n') ADVANCE(157); + if (lookahead == 'd') ADVANCE(160); + if (lookahead == 'n') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 129: + case 132: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(129); + if (lookahead == '\n') ADVANCE(132); END_STATE(); - case 130: + case 133: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 131: + case 134: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 132: + case 135: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 133: + case 136: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 134: + case 137: ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); - case 135: + case 138: ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 136: + case 139: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(84); - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'd') ADVANCE(87); + if (lookahead == 'n') ADVANCE(84); END_STATE(); - case 137: + case 140: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(165); - if (lookahead == 'n') ADVANCE(158); + if (lookahead == 'd') ADVANCE(162); + if (lookahead == 'n') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 138: + case 141: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); - case 139: + case 142: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 140: + case 143: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); - case 141: + case 144: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); - END_STATE(); - case 142: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(61); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '/') ADVANCE(311); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(143); - END_STATE(); - case 143: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(61); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '/') ADVANCE(62); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(143); - END_STATE(); - case 144: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(315); - if (lookahead == '\r') ADVANCE(312); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(316); - if (lookahead != 0) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 145: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(65) + if (lookahead == '\n') SKIP(68) if (lookahead == '\r') ADVANCE(146); - if (lookahead == '/') ADVANCE(117); - if (lookahead == '\\') ADVANCE(150); + if (lookahead == '/') ADVANCE(120); + if (lookahead == '\\') ADVANCE(149); if (lookahead != 0) ADVANCE(148); END_STATE(); case 146: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(65) - if (lookahead == '/') ADVANCE(117); - if (lookahead == '\\') ADVANCE(150); + if (lookahead == '\n') SKIP(68) + if (lookahead == '/') ADVANCE(120); + if (lookahead == '\\') ADVANCE(149); if (lookahead != 0) ADVANCE(148); END_STATE(); case 147: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(150); + if (lookahead == '*') ADVANCE(315); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '\\') ADVANCE(149); if (lookahead != 0 && lookahead != '\n') ADVANCE(148); END_STATE(); case 148: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(117); - if (lookahead == '\\') ADVANCE(150); + if (lookahead == '/') ADVANCE(120); + if (lookahead == '\\') ADVANCE(149); if (lookahead != 0 && lookahead != '\n') ADVANCE(148); END_STATE(); @@ -10071,123 +10198,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '*' && lookahead != '/' && - lookahead != '\\') ADVANCE(143); - if (lookahead == '\r') ADVANCE(152); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '/') ADVANCE(62); + lookahead != '\\') ADVANCE(148); + if (lookahead == '\r') ADVANCE(150); + if (lookahead == '/') ADVANCE(120); if (lookahead == '\\') ADVANCE(149); END_STATE(); case 150: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '\r' && lookahead != '/' && lookahead != '\\') ADVANCE(148); - if (lookahead == '\r') ADVANCE(153); - if (lookahead == '/') ADVANCE(117); - if (lookahead == '\\') ADVANCE(150); + if (lookahead == '/') ADVANCE(120); + if (lookahead == '\\') ADVANCE(149); END_STATE(); case 151: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '/' && - lookahead != '\\') ADVANCE(314); - if (lookahead == '\r') ADVANCE(318); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(316); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 152: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '/' && - lookahead != '\\') ADVANCE(143); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '/') ADVANCE(62); - if (lookahead == '\\') ADVANCE(149); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(175); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 153: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '/' && - lookahead != '\\') ADVANCE(148); - if (lookahead == '/') ADVANCE(117); - if (lookahead == '\\') ADVANCE(150); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(159); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 154: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(180); + if (lookahead == 'd') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 155: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(178); + if (lookahead == 'd') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 156: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(162); + if (lookahead == 'e') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 157: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(164); + if (lookahead == 'e') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 158: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(166); + if (lookahead == 'e') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 159: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(169); + if (lookahead == 'e') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 160: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(135); + if (lookahead == 'e') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 161: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'e') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 162: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'e') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 163: ACCEPT_TOKEN(sym_preproc_directive); @@ -10195,520 +10314,496 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 164: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'f') ADVANCE(131); + if (lookahead == 'n') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 165: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'f') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 166: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'f') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 167: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(128); - if (lookahead == 'n') ADVANCE(154); + if (lookahead == 'f') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 168: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(128); + if (lookahead == 'f') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 169: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(176); + if (lookahead == 'f') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 170: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(137); + if (lookahead == 'f') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 171: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(131); + if (lookahead == 'f') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 172: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(132); + if (lookahead == 'f') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 173: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 174: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(167); + if (lookahead == 's') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 175: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(141); + if (lookahead == 'i') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 176: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(182); + if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'n') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 177: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(170); - if (lookahead == 's') ADVANCE(160); + if (lookahead == 'l') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 178: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(171); + if (lookahead == 'n') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 179: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(177); - if (lookahead == 'n') ADVANCE(155); + if (lookahead == 'n') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 180: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(183); + if (lookahead == 'u') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 181: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); case 182: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(161); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 183: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 184: - ACCEPT_TOKEN(sym_preproc_directive); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(212); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(256); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 189: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(252); END_STATE(); case 190: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(249); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(259); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(255); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(256); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(249); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(249); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(255); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(247); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(256); + if (lookahead == '=') ADVANCE(239); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(247); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(256); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 194: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(247); + if (lookahead == '=') ADVANCE(239); END_STATE(); case 195: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(250); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(259); - if (lookahead == '=') ADVANCE(242); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(256); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(250); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(250); - if (lookahead == '=') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(236); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(315); + if (lookahead == '/') ADVANCE(306); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(315); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '=') ADVANCE(237); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(239); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(315); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(238); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(315); - if (lookahead == '=') ADVANCE(240); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(241); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(245); + if (lookahead == '|') ADVANCE(202); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(202); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(248); - if (lookahead == '|') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(244); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(203); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(247); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(203); + if (lookahead == '=') ADVANCE(243); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(206); - if (lookahead == '=') ADVANCE(246); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(215); + if (lookahead == '>') ADVANCE(222); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(215); + if (lookahead == '>') ADVANCE(221); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(224); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '=') ADVANCE(216); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(219); + if (lookahead == '=') ADVANCE(216); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(241); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(242); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(244); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(245); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(225); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(211); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(67); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(253); END_STATE(); case 251: ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(253); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(64); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); - END_STATE(); - case 255: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 256: + case 253: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(95); + if (lookahead == '\'') ADVANCE(98); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); - if (sym_number_literal_character_set_1(lookahead)) ADVANCE(272); + lookahead == 'p') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(253); + if (sym_number_literal_character_set_1(lookahead)) ADVANCE(269); END_STATE(); - case 257: + case 254: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(96); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(99); + if (lookahead == '.') ADVANCE(267); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(266); + lookahead == 'b') ADVANCE(263); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(265); + lookahead == 'e') ADVANCE(262); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(99); + lookahead == 'x') ADVANCE(102); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(267); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(264); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); + lookahead == 'w') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); END_STATE(); - case 258: + case 255: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(96); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(99); + if (lookahead == '.') ADVANCE(267); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(265); + lookahead == 'e') ADVANCE(262); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'A' || lookahead == 'C' || lookahead == 'a' || - lookahead == 'c') ADVANCE(267); + lookahead == 'c') ADVANCE(264); if (('B' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(267); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(264); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); + lookahead == 'w') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); END_STATE(); - case 259: + case 256: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(94); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(97); + if (lookahead == '.') ADVANCE(267); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(268); + lookahead == 'b') ADVANCE(265); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(63); + lookahead == 'x') ADVANCE(66); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'U' || @@ -10716,21 +10811,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + lookahead == 'w') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); - case 260: + case 257: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(94); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(97); + if (lookahead == '.') ADVANCE(267); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(271); + lookahead == 'b') ADVANCE(268); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(99); + lookahead == 'x') ADVANCE(102); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'U' || @@ -10738,473 +10833,473 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + lookahead == 'w') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); - case 261: + case 258: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(94); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(97); + if (lookahead == '.') ADVANCE(267); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); - if (sym_number_literal_character_set_1(lookahead)) ADVANCE(272); + lookahead == 'p') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); + if (sym_number_literal_character_set_1(lookahead)) ADVANCE(269); END_STATE(); - case 262: + case 259: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(100); + if (lookahead == '\'') ADVANCE(103); if (lookahead == 'B' || lookahead == 'D' || lookahead == 'F' || lookahead == 'b' || lookahead == 'd' || - lookahead == 'f') ADVANCE(262); + lookahead == 'f') ADVANCE(259); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); + lookahead == 'w') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(262); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(259); END_STATE(); - case 263: + case 260: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(98); + if (lookahead == '\'') ADVANCE(101); if (lookahead == '+' || - lookahead == '-') ADVANCE(100); + lookahead == '-') ADVANCE(103); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(263); + lookahead == 'e') ADVANCE(260); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'B' || ('D' <= lookahead && lookahead <= 'F') || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(264); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(261); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); + lookahead == 'w') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(261); END_STATE(); - case 264: + case 261: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(98); + if (lookahead == '\'') ADVANCE(101); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(263); + lookahead == 'e') ADVANCE(260); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'B' || ('D' <= lookahead && lookahead <= 'F') || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(264); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(261); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); + lookahead == 'w') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(261); END_STATE(); - case 265: + case 262: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(99); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(102); + if (lookahead == '.') ADVANCE(267); if (lookahead == '+' || - lookahead == '-') ADVANCE(100); + lookahead == '-') ADVANCE(103); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(265); + lookahead == 'e') ADVANCE(262); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'B' || ('D' <= lookahead && lookahead <= 'F') || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(267); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(264); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); + lookahead == 'w') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); END_STATE(); - case 266: + case 263: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(99); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(102); + if (lookahead == '.') ADVANCE(267); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(265); + lookahead == 'e') ADVANCE(262); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'A' || lookahead == 'C' || lookahead == 'a' || - lookahead == 'c') ADVANCE(267); + lookahead == 'c') ADVANCE(264); if (('B' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(267); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(264); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); + lookahead == 'w') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); END_STATE(); - case 267: + case 264: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(99); - if (lookahead == '.') ADVANCE(270); + if (lookahead == '\'') ADVANCE(102); + if (lookahead == '.') ADVANCE(267); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(265); + lookahead == 'e') ADVANCE(262); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'B' || ('D' <= lookahead && lookahead <= 'F') || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(267); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(264); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); + lookahead == 'w') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); END_STATE(); - case 268: + case 265: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '.') ADVANCE(95); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); - if (sym_number_literal_character_set_2(lookahead)) ADVANCE(272); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '0') ADVANCE(257); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); + if (sym_number_literal_character_set_2(lookahead)) ADVANCE(269); END_STATE(); - case 269: + case 266: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '+' || - lookahead == '-') ADVANCE(100); + lookahead == '-') ADVANCE(103); if (lookahead == 'B' || lookahead == 'D' || lookahead == 'F' || lookahead == 'b' || lookahead == 'd' || - lookahead == 'f') ADVANCE(262); + lookahead == 'f') ADVANCE(259); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); + lookahead == 'w') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(262); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(259); END_STATE(); - case 270: + case 267: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(263); + lookahead == 'e') ADVANCE(260); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(269); + lookahead == 'p') ADVANCE(266); if (lookahead == 'B' || ('D' <= lookahead && lookahead <= 'F') || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(264); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(261); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'W' || lookahead == 'l' || lookahead == 'u' || - lookahead == 'w') ADVANCE(272); + lookahead == 'w') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(261); END_STATE(); - case 271: + case 268: ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); - if (sym_number_literal_character_set_2(lookahead)) ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); + if (sym_number_literal_character_set_2(lookahead)) ADVANCE(269); END_STATE(); - case 272: + case 269: ACCEPT_TOKEN(sym_number_literal); - if (sym_number_literal_character_set_2(lookahead)) ADVANCE(272); + if (sym_number_literal_character_set_2(lookahead)) ADVANCE(269); END_STATE(); - case 273: + case 270: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 274: + case 271: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 275: + case 272: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 276: + case 273: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 277: + case 274: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 278: + case 275: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 279: + case 276: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(292); - if (lookahead == 'U') ADVANCE(115); - if (lookahead == 'u') ADVANCE(107); - if (lookahead == 'x') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); - if (lookahead != 0) ADVANCE(292); + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(287); + if (lookahead == 'U') ADVANCE(118); + if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'x') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(290); + if (lookahead != 0) ADVANCE(287); END_STATE(); - case 280: + case 277: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(315); + if (lookahead == '*') ADVANCE(315); + if (lookahead == '/') ADVANCE(306); END_STATE(); - case 281: + case 278: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); END_STATE(); - case 282: + case 279: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 283: + case 280: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 284: + case 281: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 285: + case 282: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 286: + case 283: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 287: + case 284: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(289); - if (lookahead == '/') ADVANCE(291); + if (lookahead == '*') ADVANCE(286); + if (lookahead == '/') ADVANCE(286); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(291); + lookahead != '\\') ADVANCE(286); END_STATE(); - case 288: + case 285: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '/') ADVANCE(291); + if (lookahead == '/') ADVANCE(284); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(285); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(289); + lookahead != '\\') ADVANCE(286); END_STATE(); - case 289: + case 286: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(288); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(289); + lookahead != '\\') ADVANCE(286); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(36); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); case 290: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(287); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(290); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(291); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(289); END_STATE(); case 291: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(291); + ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); case 292: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(291); + if (lookahead == '\\') ADVANCE(73); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(72); END_STATE(); case 293: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(31); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(279); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 294: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(292); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(279); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 295: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(294); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(281); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(272); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 296: - ACCEPT_TOKEN(sym_system_lib_string); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(281); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 297: - ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '\\') ADVANCE(70); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(69); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(280); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(271); + if (lookahead == '8') ADVANCE(299); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(282); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(273); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '"') ADVANCE(280); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(305); + if (lookahead == '8') ADVANCE(300); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 299: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(282); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\\') ADVANCE(71); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(273); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '"') ADVANCE(282); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\\') ADVANCE(71); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(271); + if (lookahead == '8') ADVANCE(304); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(274); - if (lookahead == '8') ADVANCE(304); - if (lookahead == '\\') ADVANCE(71); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(310); - if (lookahead == '8') ADVANCE(305); - if (lookahead == '\\') ADVANCE(71); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(272); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(276); - if (lookahead == '\\') ADVANCE(71); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\'') ADVANCE(273); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\\') ADVANCE(71); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(305); + if (lookahead == '\\') ADVANCE(74); END_STATE(); case 306: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(274); - if (lookahead == '8') ADVANCE(309); - if (lookahead == '\\') ADVANCE(71); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 307: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(273); - if (lookahead == '\\') ADVANCE(71); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '*') ADVANCE(318); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 308: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '\\') ADVANCE(71); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '\\') ADVANCE(119); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(312); END_STATE(); case 309: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\'') ADVANCE(276); - if (lookahead == '\\') ADVANCE(71); + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(311); + if (lookahead == '\\') ADVANCE(119); + if (lookahead != 0) ADVANCE(312); END_STATE(); case 310: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(310); - if (lookahead == '\\') ADVANCE(71); + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '/') ADVANCE(308); + if (lookahead == '\\') ADVANCE(119); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(312); END_STATE(); case 311: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '/') ADVANCE(310); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(311); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(312); END_STATE(); case 312: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(315); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(151); - if (lookahead != 0) ADVANCE(314); + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\\') ADVANCE(119); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(312); END_STATE(); case 313: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(315); - if (lookahead == '\\') ADVANCE(144); + ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(314); + lookahead != '\r' && + lookahead != '\\') ADVANCE(312); + if (lookahead == '\r') ADVANCE(314); + if (lookahead == '\\') ADVANCE(313); END_STATE(); case 314: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(151); + ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(314); + lookahead != '\\') ADVANCE(312); + if (lookahead == '\\') ADVANCE(119); END_STATE(); case 315: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(116); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(315); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); case 316: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(318); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '/' && - lookahead != '\\') ADVANCE(314); - if (lookahead == '\r') ADVANCE(318); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(316); + lookahead != '/') ADVANCE(64); END_STATE(); case 317: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '\\') ADVANCE(119); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(315); - if (lookahead == '\r') ADVANCE(319); - if (lookahead == '\\') ADVANCE(317); + lookahead != '\n') ADVANCE(312); END_STATE(); case 318: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '/' && - lookahead != '\\') ADVANCE(314); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(151); - END_STATE(); - case 319: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(aux_sym_comment_token2); + if (lookahead == '*') ADVANCE(318); if (lookahead != 0 && - lookahead != '\\') ADVANCE(315); - if (lookahead == '\\') ADVANCE(116); + lookahead != '/') ADVANCE(64); END_STATE(); default: return false; @@ -11240,7 +11335,9 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(22); if (lookahead == 'v') ADVANCE(23); if (lookahead == 'w') ADVANCE(24); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: @@ -12807,1135 +12904,1135 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 119}, - [2] = {.lex_state = 44}, - [3] = {.lex_state = 44}, - [4] = {.lex_state = 44}, - [5] = {.lex_state = 44}, - [6] = {.lex_state = 44}, - [7] = {.lex_state = 44}, - [8] = {.lex_state = 44}, - [9] = {.lex_state = 44}, - [10] = {.lex_state = 44}, - [11] = {.lex_state = 44}, - [12] = {.lex_state = 44}, - [13] = {.lex_state = 44}, - [14] = {.lex_state = 44}, - [15] = {.lex_state = 44}, - [16] = {.lex_state = 44}, - [17] = {.lex_state = 44}, - [18] = {.lex_state = 44}, - [19] = {.lex_state = 44}, - [20] = {.lex_state = 44}, - [21] = {.lex_state = 44}, - [22] = {.lex_state = 44}, - [23] = {.lex_state = 119}, - [24] = {.lex_state = 46}, - [25] = {.lex_state = 46}, - [26] = {.lex_state = 119}, - [27] = {.lex_state = 46}, - [28] = {.lex_state = 119}, - [29] = {.lex_state = 119}, - [30] = {.lex_state = 119}, - [31] = {.lex_state = 119}, - [32] = {.lex_state = 119}, - [33] = {.lex_state = 119}, - [34] = {.lex_state = 119}, - [35] = {.lex_state = 119}, - [36] = {.lex_state = 119}, - [37] = {.lex_state = 119}, - [38] = {.lex_state = 119}, - [39] = {.lex_state = 119}, - [40] = {.lex_state = 119}, - [41] = {.lex_state = 119}, - [42] = {.lex_state = 119}, - [43] = {.lex_state = 119}, - [44] = {.lex_state = 119}, - [45] = {.lex_state = 44}, - [46] = {.lex_state = 44}, - [47] = {.lex_state = 44}, - [48] = {.lex_state = 44}, - [49] = {.lex_state = 44}, - [50] = {.lex_state = 119}, - [51] = {.lex_state = 119}, - [52] = {.lex_state = 119}, - [53] = {.lex_state = 119}, - [54] = {.lex_state = 46}, - [55] = {.lex_state = 46}, - [56] = {.lex_state = 119}, - [57] = {.lex_state = 46}, - [58] = {.lex_state = 46}, - [59] = {.lex_state = 119}, - [60] = {.lex_state = 119}, - [61] = {.lex_state = 119}, - [62] = {.lex_state = 119}, - [63] = {.lex_state = 46}, - [64] = {.lex_state = 119}, - [65] = {.lex_state = 119}, - [66] = {.lex_state = 119}, - [67] = {.lex_state = 119}, - [68] = {.lex_state = 119}, - [69] = {.lex_state = 119}, - [70] = {.lex_state = 119}, - [71] = {.lex_state = 119}, - [72] = {.lex_state = 119}, - [73] = {.lex_state = 119}, - [74] = {.lex_state = 119}, - [75] = {.lex_state = 44}, - [76] = {.lex_state = 44}, - [77] = {.lex_state = 44}, - [78] = {.lex_state = 44}, - [79] = {.lex_state = 44}, - [80] = {.lex_state = 44}, - [81] = {.lex_state = 44}, - [82] = {.lex_state = 44}, - [83] = {.lex_state = 44}, - [84] = {.lex_state = 44}, - [85] = {.lex_state = 44}, - [86] = {.lex_state = 44}, - [87] = {.lex_state = 44}, - [88] = {.lex_state = 44}, - [89] = {.lex_state = 44}, - [90] = {.lex_state = 44}, - [91] = {.lex_state = 44}, - [92] = {.lex_state = 119}, - [93] = {.lex_state = 44}, - [94] = {.lex_state = 44}, - [95] = {.lex_state = 44}, - [96] = {.lex_state = 44}, - [97] = {.lex_state = 44}, - [98] = {.lex_state = 44}, - [99] = {.lex_state = 44}, - [100] = {.lex_state = 44}, - [101] = {.lex_state = 44}, - [102] = {.lex_state = 44}, - [103] = {.lex_state = 44}, - [104] = {.lex_state = 44}, - [105] = {.lex_state = 44}, - [106] = {.lex_state = 44}, - [107] = {.lex_state = 44}, - [108] = {.lex_state = 44}, - [109] = {.lex_state = 44}, - [110] = {.lex_state = 44}, - [111] = {.lex_state = 119}, - [112] = {.lex_state = 44}, - [113] = {.lex_state = 44}, - [114] = {.lex_state = 44}, - [115] = {.lex_state = 44}, - [116] = {.lex_state = 44}, - [117] = {.lex_state = 44}, - [118] = {.lex_state = 44}, - [119] = {.lex_state = 44}, - [120] = {.lex_state = 44}, - [121] = {.lex_state = 44}, - [122] = {.lex_state = 44}, - [123] = {.lex_state = 44}, - [124] = {.lex_state = 44}, - [125] = {.lex_state = 44}, - [126] = {.lex_state = 44}, - [127] = {.lex_state = 44}, - [128] = {.lex_state = 44}, - [129] = {.lex_state = 44}, - [130] = {.lex_state = 44}, - [131] = {.lex_state = 44}, - [132] = {.lex_state = 44}, - [133] = {.lex_state = 44}, - [134] = {.lex_state = 44}, - [135] = {.lex_state = 44}, - [136] = {.lex_state = 44}, - [137] = {.lex_state = 44}, - [138] = {.lex_state = 44}, - [139] = {.lex_state = 44}, - [140] = {.lex_state = 44}, - [141] = {.lex_state = 44}, - [142] = {.lex_state = 44}, - [143] = {.lex_state = 44}, - [144] = {.lex_state = 44}, - [145] = {.lex_state = 44}, - [146] = {.lex_state = 44}, - [147] = {.lex_state = 44}, - [148] = {.lex_state = 44}, - [149] = {.lex_state = 44}, - [150] = {.lex_state = 44}, - [151] = {.lex_state = 44}, - [152] = {.lex_state = 44}, - [153] = {.lex_state = 44}, - [154] = {.lex_state = 44}, - [155] = {.lex_state = 44}, - [156] = {.lex_state = 46}, - [157] = {.lex_state = 43}, - [158] = {.lex_state = 119}, - [159] = {.lex_state = 43}, - [160] = {.lex_state = 119}, + [1] = {.lex_state = 122}, + [2] = {.lex_state = 47}, + [3] = {.lex_state = 47}, + [4] = {.lex_state = 47}, + [5] = {.lex_state = 47}, + [6] = {.lex_state = 47}, + [7] = {.lex_state = 47}, + [8] = {.lex_state = 47}, + [9] = {.lex_state = 47}, + [10] = {.lex_state = 47}, + [11] = {.lex_state = 47}, + [12] = {.lex_state = 47}, + [13] = {.lex_state = 47}, + [14] = {.lex_state = 47}, + [15] = {.lex_state = 47}, + [16] = {.lex_state = 47}, + [17] = {.lex_state = 47}, + [18] = {.lex_state = 47}, + [19] = {.lex_state = 47}, + [20] = {.lex_state = 47}, + [21] = {.lex_state = 47}, + [22] = {.lex_state = 47}, + [23] = {.lex_state = 122}, + [24] = {.lex_state = 122}, + [25] = {.lex_state = 49}, + [26] = {.lex_state = 122}, + [27] = {.lex_state = 122}, + [28] = {.lex_state = 122}, + [29] = {.lex_state = 122}, + [30] = {.lex_state = 49}, + [31] = {.lex_state = 122}, + [32] = {.lex_state = 122}, + [33] = {.lex_state = 122}, + [34] = {.lex_state = 122}, + [35] = {.lex_state = 122}, + [36] = {.lex_state = 122}, + [37] = {.lex_state = 122}, + [38] = {.lex_state = 122}, + [39] = {.lex_state = 122}, + [40] = {.lex_state = 122}, + [41] = {.lex_state = 49}, + [42] = {.lex_state = 122}, + [43] = {.lex_state = 122}, + [44] = {.lex_state = 122}, + [45] = {.lex_state = 47}, + [46] = {.lex_state = 47}, + [47] = {.lex_state = 47}, + [48] = {.lex_state = 47}, + [49] = {.lex_state = 47}, + [50] = {.lex_state = 122}, + [51] = {.lex_state = 49}, + [52] = {.lex_state = 122}, + [53] = {.lex_state = 122}, + [54] = {.lex_state = 122}, + [55] = {.lex_state = 49}, + [56] = {.lex_state = 49}, + [57] = {.lex_state = 122}, + [58] = {.lex_state = 122}, + [59] = {.lex_state = 122}, + [60] = {.lex_state = 122}, + [61] = {.lex_state = 49}, + [62] = {.lex_state = 49}, + [63] = {.lex_state = 122}, + [64] = {.lex_state = 122}, + [65] = {.lex_state = 122}, + [66] = {.lex_state = 122}, + [67] = {.lex_state = 122}, + [68] = {.lex_state = 122}, + [69] = {.lex_state = 122}, + [70] = {.lex_state = 122}, + [71] = {.lex_state = 122}, + [72] = {.lex_state = 122}, + [73] = {.lex_state = 122}, + [74] = {.lex_state = 122}, + [75] = {.lex_state = 47}, + [76] = {.lex_state = 47}, + [77] = {.lex_state = 47}, + [78] = {.lex_state = 47}, + [79] = {.lex_state = 47}, + [80] = {.lex_state = 47}, + [81] = {.lex_state = 47}, + [82] = {.lex_state = 47}, + [83] = {.lex_state = 47}, + [84] = {.lex_state = 47}, + [85] = {.lex_state = 47}, + [86] = {.lex_state = 47}, + [87] = {.lex_state = 47}, + [88] = {.lex_state = 47}, + [89] = {.lex_state = 47}, + [90] = {.lex_state = 47}, + [91] = {.lex_state = 47}, + [92] = {.lex_state = 47}, + [93] = {.lex_state = 47}, + [94] = {.lex_state = 47}, + [95] = {.lex_state = 47}, + [96] = {.lex_state = 47}, + [97] = {.lex_state = 122}, + [98] = {.lex_state = 47}, + [99] = {.lex_state = 47}, + [100] = {.lex_state = 47}, + [101] = {.lex_state = 47}, + [102] = {.lex_state = 47}, + [103] = {.lex_state = 47}, + [104] = {.lex_state = 47}, + [105] = {.lex_state = 47}, + [106] = {.lex_state = 47}, + [107] = {.lex_state = 47}, + [108] = {.lex_state = 47}, + [109] = {.lex_state = 47}, + [110] = {.lex_state = 47}, + [111] = {.lex_state = 47}, + [112] = {.lex_state = 47}, + [113] = {.lex_state = 47}, + [114] = {.lex_state = 47}, + [115] = {.lex_state = 47}, + [116] = {.lex_state = 47}, + [117] = {.lex_state = 122}, + [118] = {.lex_state = 47}, + [119] = {.lex_state = 47}, + [120] = {.lex_state = 47}, + [121] = {.lex_state = 47}, + [122] = {.lex_state = 47}, + [123] = {.lex_state = 47}, + [124] = {.lex_state = 47}, + [125] = {.lex_state = 47}, + [126] = {.lex_state = 47}, + [127] = {.lex_state = 47}, + [128] = {.lex_state = 47}, + [129] = {.lex_state = 47}, + [130] = {.lex_state = 47}, + [131] = {.lex_state = 47}, + [132] = {.lex_state = 47}, + [133] = {.lex_state = 47}, + [134] = {.lex_state = 47}, + [135] = {.lex_state = 47}, + [136] = {.lex_state = 47}, + [137] = {.lex_state = 47}, + [138] = {.lex_state = 47}, + [139] = {.lex_state = 47}, + [140] = {.lex_state = 47}, + [141] = {.lex_state = 47}, + [142] = {.lex_state = 47}, + [143] = {.lex_state = 47}, + [144] = {.lex_state = 47}, + [145] = {.lex_state = 47}, + [146] = {.lex_state = 47}, + [147] = {.lex_state = 47}, + [148] = {.lex_state = 47}, + [149] = {.lex_state = 47}, + [150] = {.lex_state = 47}, + [151] = {.lex_state = 47}, + [152] = {.lex_state = 47}, + [153] = {.lex_state = 47}, + [154] = {.lex_state = 47}, + [155] = {.lex_state = 47}, + [156] = {.lex_state = 47}, + [157] = {.lex_state = 47}, + [158] = {.lex_state = 122}, + [159] = {.lex_state = 122}, + [160] = {.lex_state = 46}, [161] = {.lex_state = 46}, - [162] = {.lex_state = 119}, - [163] = {.lex_state = 46}, - [164] = {.lex_state = 46}, - [165] = {.lex_state = 46}, - [166] = {.lex_state = 46}, - [167] = {.lex_state = 46}, - [168] = {.lex_state = 46}, - [169] = {.lex_state = 46}, - [170] = {.lex_state = 46}, - [171] = {.lex_state = 119}, - [172] = {.lex_state = 119}, - [173] = {.lex_state = 46}, - [174] = {.lex_state = 46}, - [175] = {.lex_state = 119}, - [176] = {.lex_state = 46}, - [177] = {.lex_state = 119}, - [178] = {.lex_state = 119}, - [179] = {.lex_state = 119}, - [180] = {.lex_state = 119}, - [181] = {.lex_state = 119}, - [182] = {.lex_state = 119}, - [183] = {.lex_state = 119}, - [184] = {.lex_state = 119}, - [185] = {.lex_state = 119}, - [186] = {.lex_state = 119}, - [187] = {.lex_state = 119}, - [188] = {.lex_state = 46}, - [189] = {.lex_state = 46}, - [190] = {.lex_state = 46}, - [191] = {.lex_state = 46}, - [192] = {.lex_state = 119}, - [193] = {.lex_state = 46}, - [194] = {.lex_state = 119}, - [195] = {.lex_state = 119}, - [196] = {.lex_state = 119}, - [197] = {.lex_state = 119}, - [198] = {.lex_state = 119}, - [199] = {.lex_state = 119}, - [200] = {.lex_state = 46}, - [201] = {.lex_state = 46}, - [202] = {.lex_state = 46}, - [203] = {.lex_state = 46}, - [204] = {.lex_state = 46}, - [205] = {.lex_state = 119}, - [206] = {.lex_state = 119}, - [207] = {.lex_state = 46}, - [208] = {.lex_state = 46}, - [209] = {.lex_state = 46}, - [210] = {.lex_state = 46}, - [211] = {.lex_state = 46}, - [212] = {.lex_state = 119}, - [213] = {.lex_state = 119}, - [214] = {.lex_state = 46}, - [215] = {.lex_state = 119}, - [216] = {.lex_state = 46}, - [217] = {.lex_state = 119}, - [218] = {.lex_state = 119}, - [219] = {.lex_state = 119}, - [220] = {.lex_state = 119}, - [221] = {.lex_state = 46}, - [222] = {.lex_state = 119}, - [223] = {.lex_state = 119}, - [224] = {.lex_state = 46}, - [225] = {.lex_state = 46}, - [226] = {.lex_state = 46}, - [227] = {.lex_state = 46}, - [228] = {.lex_state = 46}, - [229] = {.lex_state = 46}, - [230] = {.lex_state = 46}, - [231] = {.lex_state = 46}, - [232] = {.lex_state = 46}, - [233] = {.lex_state = 119}, - [234] = {.lex_state = 119}, - [235] = {.lex_state = 119}, - [236] = {.lex_state = 46}, - [237] = {.lex_state = 119}, - [238] = {.lex_state = 46}, - [239] = {.lex_state = 119}, - [240] = {.lex_state = 119}, - [241] = {.lex_state = 119}, - [242] = {.lex_state = 119}, - [243] = {.lex_state = 119}, - [244] = {.lex_state = 119}, - [245] = {.lex_state = 119}, - [246] = {.lex_state = 119}, - [247] = {.lex_state = 46}, - [248] = {.lex_state = 119}, - [249] = {.lex_state = 119}, - [250] = {.lex_state = 119}, - [251] = {.lex_state = 46}, - [252] = {.lex_state = 46}, - [253] = {.lex_state = 46}, - [254] = {.lex_state = 46}, - [255] = {.lex_state = 46}, - [256] = {.lex_state = 119}, - [257] = {.lex_state = 46}, - [258] = {.lex_state = 46}, - [259] = {.lex_state = 119}, - [260] = {.lex_state = 119}, - [261] = {.lex_state = 119}, - [262] = {.lex_state = 119}, - [263] = {.lex_state = 119}, - [264] = {.lex_state = 119}, - [265] = {.lex_state = 119}, - [266] = {.lex_state = 119}, - [267] = {.lex_state = 119}, - [268] = {.lex_state = 119}, - [269] = {.lex_state = 119}, - [270] = {.lex_state = 119}, - [271] = {.lex_state = 119}, - [272] = {.lex_state = 119}, - [273] = {.lex_state = 119}, - [274] = {.lex_state = 119}, - [275] = {.lex_state = 119}, - [276] = {.lex_state = 119}, - [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}, - [285] = {.lex_state = 119}, - [286] = {.lex_state = 119}, - [287] = {.lex_state = 119}, - [288] = {.lex_state = 119}, - [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 = 46}, - [297] = {.lex_state = 119}, - [298] = {.lex_state = 119}, - [299] = {.lex_state = 119}, - [300] = {.lex_state = 119}, - [301] = {.lex_state = 119}, - [302] = {.lex_state = 119}, - [303] = {.lex_state = 119}, - [304] = {.lex_state = 119}, - [305] = {.lex_state = 119}, - [306] = {.lex_state = 119}, - [307] = {.lex_state = 119}, - [308] = {.lex_state = 119}, - [309] = {.lex_state = 46}, - [310] = {.lex_state = 46}, - [311] = {.lex_state = 119}, - [312] = {.lex_state = 119}, - [313] = {.lex_state = 119}, - [314] = {.lex_state = 119}, - [315] = {.lex_state = 119}, - [316] = {.lex_state = 119}, - [317] = {.lex_state = 119}, - [318] = {.lex_state = 119}, - [319] = {.lex_state = 46}, - [320] = {.lex_state = 119}, - [321] = {.lex_state = 46}, - [322] = {.lex_state = 46}, - [323] = {.lex_state = 119}, - [324] = {.lex_state = 46}, - [325] = {.lex_state = 46}, - [326] = {.lex_state = 46}, - [327] = {.lex_state = 119}, - [328] = {.lex_state = 46}, - [329] = {.lex_state = 46}, - [330] = {.lex_state = 46}, - [331] = {.lex_state = 46}, - [332] = {.lex_state = 46}, - [333] = {.lex_state = 46}, - [334] = {.lex_state = 119}, - [335] = {.lex_state = 119}, - [336] = {.lex_state = 46}, - [337] = {.lex_state = 46}, - [338] = {.lex_state = 119}, - [339] = {.lex_state = 119}, - [340] = {.lex_state = 46}, - [341] = {.lex_state = 46}, - [342] = {.lex_state = 119}, - [343] = {.lex_state = 119}, - [344] = {.lex_state = 119}, - [345] = {.lex_state = 119}, - [346] = {.lex_state = 119}, - [347] = {.lex_state = 119}, - [348] = {.lex_state = 46}, - [349] = {.lex_state = 119}, - [350] = {.lex_state = 119}, - [351] = {.lex_state = 119}, - [352] = {.lex_state = 119}, - [353] = {.lex_state = 46}, - [354] = {.lex_state = 119}, - [355] = {.lex_state = 119}, - [356] = {.lex_state = 46}, - [357] = {.lex_state = 119}, - [358] = {.lex_state = 119}, - [359] = {.lex_state = 119}, - [360] = {.lex_state = 46}, - [361] = {.lex_state = 119}, - [362] = {.lex_state = 119}, - [363] = {.lex_state = 119}, - [364] = {.lex_state = 46}, - [365] = {.lex_state = 46}, - [366] = {.lex_state = 119}, - [367] = {.lex_state = 119}, - [368] = {.lex_state = 119}, - [369] = {.lex_state = 46}, - [370] = {.lex_state = 46}, - [371] = {.lex_state = 119}, - [372] = {.lex_state = 119}, - [373] = {.lex_state = 119}, - [374] = {.lex_state = 119}, - [375] = {.lex_state = 119}, - [376] = {.lex_state = 119}, - [377] = {.lex_state = 119}, - [378] = {.lex_state = 119}, - [379] = {.lex_state = 119}, - [380] = {.lex_state = 119}, - [381] = {.lex_state = 119}, - [382] = {.lex_state = 119}, - [383] = {.lex_state = 46}, - [384] = {.lex_state = 119}, - [385] = {.lex_state = 119}, - [386] = {.lex_state = 119}, - [387] = {.lex_state = 119}, - [388] = {.lex_state = 119}, - [389] = {.lex_state = 119}, - [390] = {.lex_state = 119}, - [391] = {.lex_state = 119}, - [392] = {.lex_state = 119}, - [393] = {.lex_state = 119}, - [394] = {.lex_state = 119}, - [395] = {.lex_state = 119}, - [396] = {.lex_state = 119}, - [397] = {.lex_state = 119}, - [398] = {.lex_state = 119}, - [399] = {.lex_state = 119}, - [400] = {.lex_state = 119}, - [401] = {.lex_state = 119}, - [402] = {.lex_state = 46}, - [403] = {.lex_state = 119}, - [404] = {.lex_state = 119}, - [405] = {.lex_state = 119}, - [406] = {.lex_state = 43}, - [407] = {.lex_state = 119}, - [408] = {.lex_state = 119}, - [409] = {.lex_state = 119}, - [410] = {.lex_state = 119}, - [411] = {.lex_state = 119}, - [412] = {.lex_state = 119}, - [413] = {.lex_state = 119}, - [414] = {.lex_state = 119}, - [415] = {.lex_state = 119}, - [416] = {.lex_state = 119}, - [417] = {.lex_state = 119}, - [418] = {.lex_state = 119}, - [419] = {.lex_state = 119}, - [420] = {.lex_state = 119}, - [421] = {.lex_state = 119}, - [422] = {.lex_state = 119}, - [423] = {.lex_state = 119}, - [424] = {.lex_state = 119}, - [425] = {.lex_state = 119}, - [426] = {.lex_state = 119}, - [427] = {.lex_state = 119}, - [428] = {.lex_state = 119}, - [429] = {.lex_state = 119}, - [430] = {.lex_state = 119}, - [431] = {.lex_state = 119}, - [432] = {.lex_state = 119}, - [433] = {.lex_state = 119}, - [434] = {.lex_state = 119}, - [435] = {.lex_state = 119}, - [436] = {.lex_state = 119}, - [437] = {.lex_state = 119}, - [438] = {.lex_state = 119}, - [439] = {.lex_state = 119}, - [440] = {.lex_state = 119}, - [441] = {.lex_state = 119}, - [442] = {.lex_state = 119}, - [443] = {.lex_state = 119}, - [444] = {.lex_state = 119}, - [445] = {.lex_state = 119}, - [446] = {.lex_state = 119}, - [447] = {.lex_state = 119}, - [448] = {.lex_state = 43}, - [449] = {.lex_state = 43}, - [450] = {.lex_state = 43}, - [451] = {.lex_state = 119}, - [452] = {.lex_state = 48}, - [453] = {.lex_state = 48}, - [454] = {.lex_state = 48}, - [455] = {.lex_state = 48}, - [456] = {.lex_state = 48}, - [457] = {.lex_state = 48}, - [458] = {.lex_state = 119}, - [459] = {.lex_state = 48}, - [460] = {.lex_state = 48}, - [461] = {.lex_state = 48}, - [462] = {.lex_state = 48}, + [162] = {.lex_state = 49}, + [163] = {.lex_state = 122}, + [164] = {.lex_state = 122}, + [165] = {.lex_state = 122}, + [166] = {.lex_state = 122}, + [167] = {.lex_state = 122}, + [168] = {.lex_state = 122}, + [169] = {.lex_state = 49}, + [170] = {.lex_state = 49}, + [171] = {.lex_state = 49}, + [172] = {.lex_state = 122}, + [173] = {.lex_state = 49}, + [174] = {.lex_state = 122}, + [175] = {.lex_state = 49}, + [176] = {.lex_state = 122}, + [177] = {.lex_state = 122}, + [178] = {.lex_state = 49}, + [179] = {.lex_state = 122}, + [180] = {.lex_state = 49}, + [181] = {.lex_state = 49}, + [182] = {.lex_state = 49}, + [183] = {.lex_state = 49}, + [184] = {.lex_state = 122}, + [185] = {.lex_state = 122}, + [186] = {.lex_state = 122}, + [187] = {.lex_state = 122}, + [188] = {.lex_state = 122}, + [189] = {.lex_state = 122}, + [190] = {.lex_state = 122}, + [191] = {.lex_state = 122}, + [192] = {.lex_state = 122}, + [193] = {.lex_state = 49}, + [194] = {.lex_state = 49}, + [195] = {.lex_state = 122}, + [196] = {.lex_state = 122}, + [197] = {.lex_state = 122}, + [198] = {.lex_state = 122}, + [199] = {.lex_state = 49}, + [200] = {.lex_state = 122}, + [201] = {.lex_state = 49}, + [202] = {.lex_state = 122}, + [203] = {.lex_state = 122}, + [204] = {.lex_state = 49}, + [205] = {.lex_state = 122}, + [206] = {.lex_state = 49}, + [207] = {.lex_state = 122}, + [208] = {.lex_state = 49}, + [209] = {.lex_state = 122}, + [210] = {.lex_state = 122}, + [211] = {.lex_state = 122}, + [212] = {.lex_state = 122}, + [213] = {.lex_state = 49}, + [214] = {.lex_state = 122}, + [215] = {.lex_state = 122}, + [216] = {.lex_state = 122}, + [217] = {.lex_state = 122}, + [218] = {.lex_state = 122}, + [219] = {.lex_state = 122}, + [220] = {.lex_state = 122}, + [221] = {.lex_state = 122}, + [222] = {.lex_state = 122}, + [223] = {.lex_state = 122}, + [224] = {.lex_state = 122}, + [225] = {.lex_state = 122}, + [226] = {.lex_state = 49}, + [227] = {.lex_state = 122}, + [228] = {.lex_state = 49}, + [229] = {.lex_state = 122}, + [230] = {.lex_state = 122}, + [231] = {.lex_state = 122}, + [232] = {.lex_state = 122}, + [233] = {.lex_state = 49}, + [234] = {.lex_state = 49}, + [235] = {.lex_state = 49}, + [236] = {.lex_state = 122}, + [237] = {.lex_state = 122}, + [238] = {.lex_state = 49}, + [239] = {.lex_state = 49}, + [240] = {.lex_state = 122}, + [241] = {.lex_state = 122}, + [242] = {.lex_state = 49}, + [243] = {.lex_state = 122}, + [244] = {.lex_state = 49}, + [245] = {.lex_state = 122}, + [246] = {.lex_state = 49}, + [247] = {.lex_state = 49}, + [248] = {.lex_state = 122}, + [249] = {.lex_state = 49}, + [250] = {.lex_state = 49}, + [251] = {.lex_state = 122}, + [252] = {.lex_state = 122}, + [253] = {.lex_state = 49}, + [254] = {.lex_state = 49}, + [255] = {.lex_state = 122}, + [256] = {.lex_state = 49}, + [257] = {.lex_state = 49}, + [258] = {.lex_state = 49}, + [259] = {.lex_state = 49}, + [260] = {.lex_state = 49}, + [261] = {.lex_state = 122}, + [262] = {.lex_state = 122}, + [263] = {.lex_state = 122}, + [264] = {.lex_state = 122}, + [265] = {.lex_state = 49}, + [266] = {.lex_state = 122}, + [267] = {.lex_state = 122}, + [268] = {.lex_state = 122}, + [269] = {.lex_state = 122}, + [270] = {.lex_state = 49}, + [271] = {.lex_state = 122}, + [272] = {.lex_state = 122}, + [273] = {.lex_state = 122}, + [274] = {.lex_state = 122}, + [275] = {.lex_state = 122}, + [276] = {.lex_state = 122}, + [277] = {.lex_state = 49}, + [278] = {.lex_state = 49}, + [279] = {.lex_state = 122}, + [280] = {.lex_state = 49}, + [281] = {.lex_state = 49}, + [282] = {.lex_state = 49}, + [283] = {.lex_state = 122}, + [284] = {.lex_state = 122}, + [285] = {.lex_state = 49}, + [286] = {.lex_state = 49}, + [287] = {.lex_state = 122}, + [288] = {.lex_state = 49}, + [289] = {.lex_state = 122}, + [290] = {.lex_state = 49}, + [291] = {.lex_state = 122}, + [292] = {.lex_state = 122}, + [293] = {.lex_state = 122}, + [294] = {.lex_state = 122}, + [295] = {.lex_state = 122}, + [296] = {.lex_state = 49}, + [297] = {.lex_state = 49}, + [298] = {.lex_state = 122}, + [299] = {.lex_state = 122}, + [300] = {.lex_state = 122}, + [301] = {.lex_state = 122}, + [302] = {.lex_state = 122}, + [303] = {.lex_state = 122}, + [304] = {.lex_state = 122}, + [305] = {.lex_state = 122}, + [306] = {.lex_state = 122}, + [307] = {.lex_state = 122}, + [308] = {.lex_state = 122}, + [309] = {.lex_state = 122}, + [310] = {.lex_state = 122}, + [311] = {.lex_state = 122}, + [312] = {.lex_state = 122}, + [313] = {.lex_state = 122}, + [314] = {.lex_state = 122}, + [315] = {.lex_state = 49}, + [316] = {.lex_state = 49}, + [317] = {.lex_state = 122}, + [318] = {.lex_state = 49}, + [319] = {.lex_state = 49}, + [320] = {.lex_state = 49}, + [321] = {.lex_state = 49}, + [322] = {.lex_state = 122}, + [323] = {.lex_state = 122}, + [324] = {.lex_state = 122}, + [325] = {.lex_state = 49}, + [326] = {.lex_state = 49}, + [327] = {.lex_state = 49}, + [328] = {.lex_state = 49}, + [329] = {.lex_state = 122}, + [330] = {.lex_state = 122}, + [331] = {.lex_state = 122}, + [332] = {.lex_state = 122}, + [333] = {.lex_state = 122}, + [334] = {.lex_state = 122}, + [335] = {.lex_state = 122}, + [336] = {.lex_state = 122}, + [337] = {.lex_state = 122}, + [338] = {.lex_state = 122}, + [339] = {.lex_state = 122}, + [340] = {.lex_state = 122}, + [341] = {.lex_state = 122}, + [342] = {.lex_state = 122}, + [343] = {.lex_state = 122}, + [344] = {.lex_state = 122}, + [345] = {.lex_state = 122}, + [346] = {.lex_state = 122}, + [347] = {.lex_state = 122}, + [348] = {.lex_state = 122}, + [349] = {.lex_state = 122}, + [350] = {.lex_state = 122}, + [351] = {.lex_state = 122}, + [352] = {.lex_state = 122}, + [353] = {.lex_state = 122}, + [354] = {.lex_state = 122}, + [355] = {.lex_state = 122}, + [356] = {.lex_state = 49}, + [357] = {.lex_state = 122}, + [358] = {.lex_state = 122}, + [359] = {.lex_state = 122}, + [360] = {.lex_state = 49}, + [361] = {.lex_state = 122}, + [362] = {.lex_state = 122}, + [363] = {.lex_state = 49}, + [364] = {.lex_state = 122}, + [365] = {.lex_state = 122}, + [366] = {.lex_state = 49}, + [367] = {.lex_state = 122}, + [368] = {.lex_state = 49}, + [369] = {.lex_state = 122}, + [370] = {.lex_state = 122}, + [371] = {.lex_state = 122}, + [372] = {.lex_state = 122}, + [373] = {.lex_state = 122}, + [374] = {.lex_state = 122}, + [375] = {.lex_state = 122}, + [376] = {.lex_state = 49}, + [377] = {.lex_state = 49}, + [378] = {.lex_state = 122}, + [379] = {.lex_state = 122}, + [380] = {.lex_state = 122}, + [381] = {.lex_state = 122}, + [382] = {.lex_state = 49}, + [383] = {.lex_state = 49}, + [384] = {.lex_state = 49}, + [385] = {.lex_state = 49}, + [386] = {.lex_state = 49}, + [387] = {.lex_state = 122}, + [388] = {.lex_state = 122}, + [389] = {.lex_state = 122}, + [390] = {.lex_state = 122}, + [391] = {.lex_state = 122}, + [392] = {.lex_state = 122}, + [393] = {.lex_state = 122}, + [394] = {.lex_state = 122}, + [395] = {.lex_state = 49}, + [396] = {.lex_state = 122}, + [397] = {.lex_state = 49}, + [398] = {.lex_state = 122}, + [399] = {.lex_state = 122}, + [400] = {.lex_state = 122}, + [401] = {.lex_state = 122}, + [402] = {.lex_state = 49}, + [403] = {.lex_state = 122}, + [404] = {.lex_state = 122}, + [405] = {.lex_state = 49}, + [406] = {.lex_state = 49}, + [407] = {.lex_state = 49}, + [408] = {.lex_state = 49}, + [409] = {.lex_state = 122}, + [410] = {.lex_state = 122}, + [411] = {.lex_state = 122}, + [412] = {.lex_state = 122}, + [413] = {.lex_state = 46}, + [414] = {.lex_state = 122}, + [415] = {.lex_state = 122}, + [416] = {.lex_state = 122}, + [417] = {.lex_state = 122}, + [418] = {.lex_state = 122}, + [419] = {.lex_state = 122}, + [420] = {.lex_state = 122}, + [421] = {.lex_state = 122}, + [422] = {.lex_state = 122}, + [423] = {.lex_state = 122}, + [424] = {.lex_state = 122}, + [425] = {.lex_state = 122}, + [426] = {.lex_state = 122}, + [427] = {.lex_state = 122}, + [428] = {.lex_state = 122}, + [429] = {.lex_state = 122}, + [430] = {.lex_state = 122}, + [431] = {.lex_state = 122}, + [432] = {.lex_state = 122}, + [433] = {.lex_state = 122}, + [434] = {.lex_state = 122}, + [435] = {.lex_state = 122}, + [436] = {.lex_state = 122}, + [437] = {.lex_state = 122}, + [438] = {.lex_state = 122}, + [439] = {.lex_state = 122}, + [440] = {.lex_state = 122}, + [441] = {.lex_state = 122}, + [442] = {.lex_state = 122}, + [443] = {.lex_state = 122}, + [444] = {.lex_state = 122}, + [445] = {.lex_state = 122}, + [446] = {.lex_state = 122}, + [447] = {.lex_state = 122}, + [448] = {.lex_state = 122}, + [449] = {.lex_state = 122}, + [450] = {.lex_state = 122}, + [451] = {.lex_state = 122}, + [452] = {.lex_state = 122}, + [453] = {.lex_state = 122}, + [454] = {.lex_state = 46}, + [455] = {.lex_state = 46}, + [456] = {.lex_state = 122}, + [457] = {.lex_state = 122}, + [458] = {.lex_state = 46}, + [459] = {.lex_state = 122}, + [460] = {.lex_state = 51}, + [461] = {.lex_state = 51}, + [462] = {.lex_state = 51}, [463] = {.lex_state = 51}, - [464] = {.lex_state = 119}, - [465] = {.lex_state = 119}, - [466] = {.lex_state = 119}, - [467] = {.lex_state = 119}, - [468] = {.lex_state = 119}, - [469] = {.lex_state = 119}, - [470] = {.lex_state = 119}, - [471] = {.lex_state = 119}, - [472] = {.lex_state = 119}, - [473] = {.lex_state = 119}, - [474] = {.lex_state = 119}, - [475] = {.lex_state = 119}, - [476] = {.lex_state = 119}, - [477] = {.lex_state = 119}, - [478] = {.lex_state = 51}, - [479] = {.lex_state = 51}, - [480] = {.lex_state = 51}, - [481] = {.lex_state = 51}, - [482] = {.lex_state = 51}, - [483] = {.lex_state = 51}, - [484] = {.lex_state = 51}, - [485] = {.lex_state = 51}, - [486] = {.lex_state = 51}, - [487] = {.lex_state = 51}, - [488] = {.lex_state = 51}, - [489] = {.lex_state = 51}, - [490] = {.lex_state = 51}, - [491] = {.lex_state = 51}, - [492] = {.lex_state = 51}, - [493] = {.lex_state = 51}, - [494] = {.lex_state = 51}, - [495] = {.lex_state = 51}, - [496] = {.lex_state = 119}, - [497] = {.lex_state = 119}, - [498] = {.lex_state = 119}, - [499] = {.lex_state = 119}, - [500] = {.lex_state = 119}, - [501] = {.lex_state = 119}, - [502] = {.lex_state = 119}, - [503] = {.lex_state = 119}, - [504] = {.lex_state = 119}, - [505] = {.lex_state = 119}, - [506] = {.lex_state = 119}, - [507] = {.lex_state = 119}, - [508] = {.lex_state = 119}, - [509] = {.lex_state = 119}, - [510] = {.lex_state = 119}, - [511] = {.lex_state = 119}, - [512] = {.lex_state = 119}, - [513] = {.lex_state = 119}, - [514] = {.lex_state = 119}, - [515] = {.lex_state = 119}, - [516] = {.lex_state = 119}, - [517] = {.lex_state = 119}, - [518] = {.lex_state = 119}, - [519] = {.lex_state = 119}, - [520] = {.lex_state = 119}, - [521] = {.lex_state = 119}, - [522] = {.lex_state = 119}, - [523] = {.lex_state = 119}, - [524] = {.lex_state = 119}, - [525] = {.lex_state = 119}, - [526] = {.lex_state = 119}, - [527] = {.lex_state = 52}, - [528] = {.lex_state = 52}, - [529] = {.lex_state = 119}, - [530] = {.lex_state = 119}, - [531] = {.lex_state = 119}, - [532] = {.lex_state = 119}, - [533] = {.lex_state = 56}, - [534] = {.lex_state = 56}, - [535] = {.lex_state = 119}, - [536] = {.lex_state = 119}, - [537] = {.lex_state = 119}, - [538] = {.lex_state = 119}, - [539] = {.lex_state = 52}, - [540] = {.lex_state = 119}, - [541] = {.lex_state = 119}, - [542] = {.lex_state = 119}, - [543] = {.lex_state = 56}, - [544] = {.lex_state = 119}, - [545] = {.lex_state = 119}, - [546] = {.lex_state = 119}, - [547] = {.lex_state = 119}, - [548] = {.lex_state = 119}, - [549] = {.lex_state = 119}, - [550] = {.lex_state = 119}, - [551] = {.lex_state = 119}, - [552] = {.lex_state = 119}, - [553] = {.lex_state = 119}, - [554] = {.lex_state = 119}, - [555] = {.lex_state = 119}, - [556] = {.lex_state = 119}, - [557] = {.lex_state = 119}, - [558] = {.lex_state = 119}, - [559] = {.lex_state = 119}, - [560] = {.lex_state = 119}, - [561] = {.lex_state = 119}, - [562] = {.lex_state = 119}, - [563] = {.lex_state = 119}, - [564] = {.lex_state = 119}, - [565] = {.lex_state = 119}, - [566] = {.lex_state = 119}, - [567] = {.lex_state = 119}, - [568] = {.lex_state = 119}, - [569] = {.lex_state = 119}, - [570] = {.lex_state = 119}, - [571] = {.lex_state = 119}, - [572] = {.lex_state = 119}, - [573] = {.lex_state = 119}, - [574] = {.lex_state = 119}, - [575] = {.lex_state = 119}, - [576] = {.lex_state = 119}, - [577] = {.lex_state = 119}, - [578] = {.lex_state = 119}, - [579] = {.lex_state = 119}, - [580] = {.lex_state = 119}, - [581] = {.lex_state = 119}, - [582] = {.lex_state = 119}, - [583] = {.lex_state = 119}, - [584] = {.lex_state = 119}, - [585] = {.lex_state = 119}, - [586] = {.lex_state = 119}, - [587] = {.lex_state = 119}, - [588] = {.lex_state = 119}, - [589] = {.lex_state = 119}, - [590] = {.lex_state = 119}, - [591] = {.lex_state = 119}, - [592] = {.lex_state = 119}, - [593] = {.lex_state = 119}, - [594] = {.lex_state = 119}, - [595] = {.lex_state = 119}, - [596] = {.lex_state = 119}, - [597] = {.lex_state = 119}, - [598] = {.lex_state = 119}, - [599] = {.lex_state = 119}, - [600] = {.lex_state = 119}, - [601] = {.lex_state = 119}, - [602] = {.lex_state = 119}, - [603] = {.lex_state = 119}, - [604] = {.lex_state = 119}, - [605] = {.lex_state = 119}, - [606] = {.lex_state = 119}, - [607] = {.lex_state = 119}, - [608] = {.lex_state = 119}, - [609] = {.lex_state = 119}, - [610] = {.lex_state = 119}, - [611] = {.lex_state = 119}, - [612] = {.lex_state = 119}, - [613] = {.lex_state = 119}, - [614] = {.lex_state = 119}, - [615] = {.lex_state = 119}, - [616] = {.lex_state = 119}, - [617] = {.lex_state = 119}, - [618] = {.lex_state = 119}, - [619] = {.lex_state = 119}, - [620] = {.lex_state = 119}, - [621] = {.lex_state = 119}, - [622] = {.lex_state = 119}, - [623] = {.lex_state = 119}, - [624] = {.lex_state = 119}, - [625] = {.lex_state = 119}, - [626] = {.lex_state = 119}, - [627] = {.lex_state = 119}, - [628] = {.lex_state = 119}, - [629] = {.lex_state = 119}, - [630] = {.lex_state = 119}, - [631] = {.lex_state = 119}, - [632] = {.lex_state = 119}, - [633] = {.lex_state = 119}, - [634] = {.lex_state = 119}, - [635] = {.lex_state = 119}, - [636] = {.lex_state = 119}, - [637] = {.lex_state = 119}, - [638] = {.lex_state = 119}, - [639] = {.lex_state = 119}, - [640] = {.lex_state = 119}, - [641] = {.lex_state = 119}, - [642] = {.lex_state = 119}, - [643] = {.lex_state = 119}, - [644] = {.lex_state = 119}, - [645] = {.lex_state = 119}, - [646] = {.lex_state = 119}, - [647] = {.lex_state = 119}, - [648] = {.lex_state = 119}, - [649] = {.lex_state = 119}, - [650] = {.lex_state = 119}, - [651] = {.lex_state = 119}, - [652] = {.lex_state = 119}, - [653] = {.lex_state = 119}, - [654] = {.lex_state = 119}, - [655] = {.lex_state = 119}, - [656] = {.lex_state = 119}, - [657] = {.lex_state = 119}, - [658] = {.lex_state = 119}, - [659] = {.lex_state = 119}, - [660] = {.lex_state = 119}, - [661] = {.lex_state = 48}, - [662] = {.lex_state = 48}, - [663] = {.lex_state = 51}, - [664] = {.lex_state = 51}, - [665] = {.lex_state = 48}, - [666] = {.lex_state = 48}, - [667] = {.lex_state = 51}, - [668] = {.lex_state = 51}, - [669] = {.lex_state = 48}, - [670] = {.lex_state = 48}, - [671] = {.lex_state = 48}, - [672] = {.lex_state = 49}, - [673] = {.lex_state = 49}, - [674] = {.lex_state = 49}, - [675] = {.lex_state = 49}, - [676] = {.lex_state = 49}, - [677] = {.lex_state = 49}, - [678] = {.lex_state = 49}, - [679] = {.lex_state = 49}, - [680] = {.lex_state = 49}, - [681] = {.lex_state = 49}, - [682] = {.lex_state = 51}, - [683] = {.lex_state = 48}, - [684] = {.lex_state = 49}, - [685] = {.lex_state = 119}, - [686] = {.lex_state = 119}, - [687] = {.lex_state = 119}, - [688] = {.lex_state = 51}, - [689] = {.lex_state = 51}, - [690] = {.lex_state = 51}, - [691] = {.lex_state = 51}, - [692] = {.lex_state = 49}, + [464] = {.lex_state = 51}, + [465] = {.lex_state = 51}, + [466] = {.lex_state = 122}, + [467] = {.lex_state = 51}, + [468] = {.lex_state = 51}, + [469] = {.lex_state = 51}, + [470] = {.lex_state = 51}, + [471] = {.lex_state = 54}, + [472] = {.lex_state = 122}, + [473] = {.lex_state = 122}, + [474] = {.lex_state = 122}, + [475] = {.lex_state = 122}, + [476] = {.lex_state = 122}, + [477] = {.lex_state = 122}, + [478] = {.lex_state = 122}, + [479] = {.lex_state = 122}, + [480] = {.lex_state = 122}, + [481] = {.lex_state = 122}, + [482] = {.lex_state = 122}, + [483] = {.lex_state = 122}, + [484] = {.lex_state = 122}, + [485] = {.lex_state = 122}, + [486] = {.lex_state = 54}, + [487] = {.lex_state = 54}, + [488] = {.lex_state = 54}, + [489] = {.lex_state = 54}, + [490] = {.lex_state = 54}, + [491] = {.lex_state = 54}, + [492] = {.lex_state = 54}, + [493] = {.lex_state = 54}, + [494] = {.lex_state = 54}, + [495] = {.lex_state = 54}, + [496] = {.lex_state = 54}, + [497] = {.lex_state = 54}, + [498] = {.lex_state = 54}, + [499] = {.lex_state = 54}, + [500] = {.lex_state = 54}, + [501] = {.lex_state = 54}, + [502] = {.lex_state = 54}, + [503] = {.lex_state = 54}, + [504] = {.lex_state = 122}, + [505] = {.lex_state = 122}, + [506] = {.lex_state = 122}, + [507] = {.lex_state = 122}, + [508] = {.lex_state = 122}, + [509] = {.lex_state = 122}, + [510] = {.lex_state = 122}, + [511] = {.lex_state = 122}, + [512] = {.lex_state = 122}, + [513] = {.lex_state = 122}, + [514] = {.lex_state = 122}, + [515] = {.lex_state = 122}, + [516] = {.lex_state = 122}, + [517] = {.lex_state = 122}, + [518] = {.lex_state = 122}, + [519] = {.lex_state = 122}, + [520] = {.lex_state = 122}, + [521] = {.lex_state = 122}, + [522] = {.lex_state = 122}, + [523] = {.lex_state = 122}, + [524] = {.lex_state = 122}, + [525] = {.lex_state = 122}, + [526] = {.lex_state = 122}, + [527] = {.lex_state = 122}, + [528] = {.lex_state = 122}, + [529] = {.lex_state = 122}, + [530] = {.lex_state = 122}, + [531] = {.lex_state = 122}, + [532] = {.lex_state = 122}, + [533] = {.lex_state = 122}, + [534] = {.lex_state = 122}, + [535] = {.lex_state = 122}, + [536] = {.lex_state = 122}, + [537] = {.lex_state = 122}, + [538] = {.lex_state = 122}, + [539] = {.lex_state = 122}, + [540] = {.lex_state = 55}, + [541] = {.lex_state = 122}, + [542] = {.lex_state = 122}, + [543] = {.lex_state = 59}, + [544] = {.lex_state = 122}, + [545] = {.lex_state = 59}, + [546] = {.lex_state = 122}, + [547] = {.lex_state = 55}, + [548] = {.lex_state = 59}, + [549] = {.lex_state = 122}, + [550] = {.lex_state = 122}, + [551] = {.lex_state = 122}, + [552] = {.lex_state = 55}, + [553] = {.lex_state = 122}, + [554] = {.lex_state = 122}, + [555] = {.lex_state = 122}, + [556] = {.lex_state = 122}, + [557] = {.lex_state = 122}, + [558] = {.lex_state = 122}, + [559] = {.lex_state = 122}, + [560] = {.lex_state = 122}, + [561] = {.lex_state = 122}, + [562] = {.lex_state = 122}, + [563] = {.lex_state = 122}, + [564] = {.lex_state = 122}, + [565] = {.lex_state = 122}, + [566] = {.lex_state = 122}, + [567] = {.lex_state = 122}, + [568] = {.lex_state = 122}, + [569] = {.lex_state = 122}, + [570] = {.lex_state = 122}, + [571] = {.lex_state = 122}, + [572] = {.lex_state = 122}, + [573] = {.lex_state = 122}, + [574] = {.lex_state = 122}, + [575] = {.lex_state = 122}, + [576] = {.lex_state = 122}, + [577] = {.lex_state = 122}, + [578] = {.lex_state = 122}, + [579] = {.lex_state = 122}, + [580] = {.lex_state = 122}, + [581] = {.lex_state = 122}, + [582] = {.lex_state = 122}, + [583] = {.lex_state = 122}, + [584] = {.lex_state = 122}, + [585] = {.lex_state = 122}, + [586] = {.lex_state = 122}, + [587] = {.lex_state = 122}, + [588] = {.lex_state = 122}, + [589] = {.lex_state = 122}, + [590] = {.lex_state = 122}, + [591] = {.lex_state = 122}, + [592] = {.lex_state = 122}, + [593] = {.lex_state = 122}, + [594] = {.lex_state = 122}, + [595] = {.lex_state = 122}, + [596] = {.lex_state = 122}, + [597] = {.lex_state = 122}, + [598] = {.lex_state = 122}, + [599] = {.lex_state = 122}, + [600] = {.lex_state = 122}, + [601] = {.lex_state = 122}, + [602] = {.lex_state = 122}, + [603] = {.lex_state = 122}, + [604] = {.lex_state = 122}, + [605] = {.lex_state = 122}, + [606] = {.lex_state = 122}, + [607] = {.lex_state = 122}, + [608] = {.lex_state = 122}, + [609] = {.lex_state = 122}, + [610] = {.lex_state = 122}, + [611] = {.lex_state = 122}, + [612] = {.lex_state = 122}, + [613] = {.lex_state = 122}, + [614] = {.lex_state = 122}, + [615] = {.lex_state = 122}, + [616] = {.lex_state = 122}, + [617] = {.lex_state = 122}, + [618] = {.lex_state = 122}, + [619] = {.lex_state = 122}, + [620] = {.lex_state = 122}, + [621] = {.lex_state = 122}, + [622] = {.lex_state = 122}, + [623] = {.lex_state = 122}, + [624] = {.lex_state = 122}, + [625] = {.lex_state = 122}, + [626] = {.lex_state = 122}, + [627] = {.lex_state = 122}, + [628] = {.lex_state = 122}, + [629] = {.lex_state = 122}, + [630] = {.lex_state = 122}, + [631] = {.lex_state = 122}, + [632] = {.lex_state = 122}, + [633] = {.lex_state = 122}, + [634] = {.lex_state = 122}, + [635] = {.lex_state = 122}, + [636] = {.lex_state = 122}, + [637] = {.lex_state = 122}, + [638] = {.lex_state = 122}, + [639] = {.lex_state = 122}, + [640] = {.lex_state = 122}, + [641] = {.lex_state = 122}, + [642] = {.lex_state = 122}, + [643] = {.lex_state = 122}, + [644] = {.lex_state = 122}, + [645] = {.lex_state = 122}, + [646] = {.lex_state = 122}, + [647] = {.lex_state = 122}, + [648] = {.lex_state = 122}, + [649] = {.lex_state = 122}, + [650] = {.lex_state = 122}, + [651] = {.lex_state = 122}, + [652] = {.lex_state = 122}, + [653] = {.lex_state = 122}, + [654] = {.lex_state = 122}, + [655] = {.lex_state = 122}, + [656] = {.lex_state = 122}, + [657] = {.lex_state = 122}, + [658] = {.lex_state = 122}, + [659] = {.lex_state = 122}, + [660] = {.lex_state = 122}, + [661] = {.lex_state = 122}, + [662] = {.lex_state = 122}, + [663] = {.lex_state = 122}, + [664] = {.lex_state = 122}, + [665] = {.lex_state = 122}, + [666] = {.lex_state = 122}, + [667] = {.lex_state = 122}, + [668] = {.lex_state = 122}, + [669] = {.lex_state = 51}, + [670] = {.lex_state = 54}, + [671] = {.lex_state = 54}, + [672] = {.lex_state = 122}, + [673] = {.lex_state = 51}, + [674] = {.lex_state = 54}, + [675] = {.lex_state = 51}, + [676] = {.lex_state = 54}, + [677] = {.lex_state = 51}, + [678] = {.lex_state = 51}, + [679] = {.lex_state = 51}, + [680] = {.lex_state = 51}, + [681] = {.lex_state = 51}, + [682] = {.lex_state = 52}, + [683] = {.lex_state = 52}, + [684] = {.lex_state = 52}, + [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 = 54}, [693] = {.lex_state = 51}, - [694] = {.lex_state = 51}, - [695] = {.lex_state = 51}, - [696] = {.lex_state = 49}, - [697] = {.lex_state = 49}, - [698] = {.lex_state = 51}, - [699] = {.lex_state = 51}, - [700] = {.lex_state = 49}, - [701] = {.lex_state = 51}, - [702] = {.lex_state = 49}, - [703] = {.lex_state = 51}, - [704] = {.lex_state = 49}, - [705] = {.lex_state = 49}, - [706] = {.lex_state = 51}, - [707] = {.lex_state = 51}, - [708] = {.lex_state = 51}, - [709] = {.lex_state = 51}, - [710] = {.lex_state = 51}, - [711] = {.lex_state = 49}, - [712] = {.lex_state = 51}, - [713] = {.lex_state = 51}, - [714] = {.lex_state = 49}, - [715] = {.lex_state = 49}, - [716] = {.lex_state = 49}, - [717] = {.lex_state = 49}, - [718] = {.lex_state = 49}, - [719] = {.lex_state = 49}, - [720] = {.lex_state = 49}, - [721] = {.lex_state = 49}, - [722] = {.lex_state = 49}, - [723] = {.lex_state = 49}, - [724] = {.lex_state = 50}, - [725] = {.lex_state = 51}, - [726] = {.lex_state = 50}, - [727] = {.lex_state = 49}, - [728] = {.lex_state = 48}, - [729] = {.lex_state = 50}, - [730] = {.lex_state = 51}, - [731] = {.lex_state = 51}, - [732] = {.lex_state = 50}, - [733] = {.lex_state = 49}, - [734] = {.lex_state = 51}, - [735] = {.lex_state = 48}, - [736] = {.lex_state = 49}, - [737] = {.lex_state = 49}, - [738] = {.lex_state = 48}, - [739] = {.lex_state = 119}, - [740] = {.lex_state = 51}, - [741] = {.lex_state = 51}, + [694] = {.lex_state = 52}, + [695] = {.lex_state = 122}, + [696] = {.lex_state = 122}, + [697] = {.lex_state = 122}, + [698] = {.lex_state = 54}, + [699] = {.lex_state = 52}, + [700] = {.lex_state = 52}, + [701] = {.lex_state = 54}, + [702] = {.lex_state = 54}, + [703] = {.lex_state = 54}, + [704] = {.lex_state = 52}, + [705] = {.lex_state = 54}, + [706] = {.lex_state = 52}, + [707] = {.lex_state = 54}, + [708] = {.lex_state = 54}, + [709] = {.lex_state = 54}, + [710] = {.lex_state = 54}, + [711] = {.lex_state = 54}, + [712] = {.lex_state = 52}, + [713] = {.lex_state = 52}, + [714] = {.lex_state = 54}, + [715] = {.lex_state = 52}, + [716] = {.lex_state = 52}, + [717] = {.lex_state = 52}, + [718] = {.lex_state = 54}, + [719] = {.lex_state = 52}, + [720] = {.lex_state = 52}, + [721] = {.lex_state = 52}, + [722] = {.lex_state = 54}, + [723] = {.lex_state = 54}, + [724] = {.lex_state = 52}, + [725] = {.lex_state = 52}, + [726] = {.lex_state = 54}, + [727] = {.lex_state = 54}, + [728] = {.lex_state = 54}, + [729] = {.lex_state = 54}, + [730] = {.lex_state = 52}, + [731] = {.lex_state = 52}, + [732] = {.lex_state = 52}, + [733] = {.lex_state = 52}, + [734] = {.lex_state = 52}, + [735] = {.lex_state = 54}, + [736] = {.lex_state = 51}, + [737] = {.lex_state = 54}, + [738] = {.lex_state = 52}, + [739] = {.lex_state = 52}, + [740] = {.lex_state = 53}, + [741] = {.lex_state = 54}, [742] = {.lex_state = 51}, - [743] = {.lex_state = 51}, - [744] = {.lex_state = 51}, - [745] = {.lex_state = 51}, - [746] = {.lex_state = 51}, - [747] = {.lex_state = 51}, - [748] = {.lex_state = 48}, - [749] = {.lex_state = 51}, - [750] = {.lex_state = 119}, + [743] = {.lex_state = 52}, + [744] = {.lex_state = 53}, + [745] = {.lex_state = 53}, + [746] = {.lex_state = 53}, + [747] = {.lex_state = 52}, + [748] = {.lex_state = 54}, + [749] = {.lex_state = 52}, + [750] = {.lex_state = 52}, [751] = {.lex_state = 51}, - [752] = {.lex_state = 51}, - [753] = {.lex_state = 48}, - [754] = {.lex_state = 51}, - [755] = {.lex_state = 51}, - [756] = {.lex_state = 51}, - [757] = {.lex_state = 51}, - [758] = {.lex_state = 48}, - [759] = {.lex_state = 48}, - [760] = {.lex_state = 48}, - [761] = {.lex_state = 48}, - [762] = {.lex_state = 51}, - [763] = {.lex_state = 49}, - [764] = {.lex_state = 48}, - [765] = {.lex_state = 49}, - [766] = {.lex_state = 49}, - [767] = {.lex_state = 49}, - [768] = {.lex_state = 49}, - [769] = {.lex_state = 49}, - [770] = {.lex_state = 49}, - [771] = {.lex_state = 49}, - [772] = {.lex_state = 49}, - [773] = {.lex_state = 51}, - [774] = {.lex_state = 49}, - [775] = {.lex_state = 51}, + [752] = {.lex_state = 122}, + [753] = {.lex_state = 54}, + [754] = {.lex_state = 54}, + [755] = {.lex_state = 54}, + [756] = {.lex_state = 54}, + [757] = {.lex_state = 54}, + [758] = {.lex_state = 54}, + [759] = {.lex_state = 54}, + [760] = {.lex_state = 54}, + [761] = {.lex_state = 54}, + [762] = {.lex_state = 54}, + [763] = {.lex_state = 51}, + [764] = {.lex_state = 51}, + [765] = {.lex_state = 54}, + [766] = {.lex_state = 54}, + [767] = {.lex_state = 54}, + [768] = {.lex_state = 122}, + [769] = {.lex_state = 51}, + [770] = {.lex_state = 51}, + [771] = {.lex_state = 51}, + [772] = {.lex_state = 54}, + [773] = {.lex_state = 122}, + [774] = {.lex_state = 54}, + [775] = {.lex_state = 54}, [776] = {.lex_state = 51}, - [777] = {.lex_state = 49}, - [778] = {.lex_state = 49}, + [777] = {.lex_state = 54}, + [778] = {.lex_state = 52}, [779] = {.lex_state = 51}, - [780] = {.lex_state = 51}, - [781] = {.lex_state = 51}, - [782] = {.lex_state = 51}, - [783] = {.lex_state = 51}, - [784] = {.lex_state = 51}, - [785] = {.lex_state = 51}, - [786] = {.lex_state = 51}, - [787] = {.lex_state = 51}, - [788] = {.lex_state = 51}, - [789] = {.lex_state = 51}, - [790] = {.lex_state = 51}, - [791] = {.lex_state = 51}, - [792] = {.lex_state = 51}, - [793] = {.lex_state = 51}, - [794] = {.lex_state = 51}, - [795] = {.lex_state = 51}, - [796] = {.lex_state = 51}, - [797] = {.lex_state = 51}, - [798] = {.lex_state = 51}, - [799] = {.lex_state = 49}, - [800] = {.lex_state = 51}, - [801] = {.lex_state = 51}, - [802] = {.lex_state = 51}, - [803] = {.lex_state = 51}, - [804] = {.lex_state = 51}, - [805] = {.lex_state = 51}, - [806] = {.lex_state = 51}, - [807] = {.lex_state = 51}, - [808] = {.lex_state = 51}, - [809] = {.lex_state = 51}, - [810] = {.lex_state = 51}, - [811] = {.lex_state = 51}, - [812] = {.lex_state = 51}, - [813] = {.lex_state = 51}, - [814] = {.lex_state = 51}, - [815] = {.lex_state = 51}, - [816] = {.lex_state = 51}, - [817] = {.lex_state = 51}, - [818] = {.lex_state = 51}, - [819] = {.lex_state = 51}, - [820] = {.lex_state = 51}, - [821] = {.lex_state = 51}, - [822] = {.lex_state = 51}, - [823] = {.lex_state = 51}, - [824] = {.lex_state = 51}, - [825] = {.lex_state = 51}, - [826] = {.lex_state = 51}, - [827] = {.lex_state = 51}, - [828] = {.lex_state = 51}, - [829] = {.lex_state = 51}, - [830] = {.lex_state = 51}, - [831] = {.lex_state = 51}, - [832] = {.lex_state = 51}, - [833] = {.lex_state = 51}, - [834] = {.lex_state = 51}, - [835] = {.lex_state = 51}, - [836] = {.lex_state = 51}, - [837] = {.lex_state = 51}, - [838] = {.lex_state = 51}, - [839] = {.lex_state = 51}, - [840] = {.lex_state = 51}, - [841] = {.lex_state = 51}, - [842] = {.lex_state = 51}, - [843] = {.lex_state = 51}, - [844] = {.lex_state = 51}, - [845] = {.lex_state = 51}, - [846] = {.lex_state = 51}, - [847] = {.lex_state = 51}, - [848] = {.lex_state = 51}, - [849] = {.lex_state = 51}, - [850] = {.lex_state = 51}, - [851] = {.lex_state = 51}, - [852] = {.lex_state = 51}, - [853] = {.lex_state = 51}, - [854] = {.lex_state = 51}, - [855] = {.lex_state = 51}, - [856] = {.lex_state = 51}, - [857] = {.lex_state = 51}, - [858] = {.lex_state = 51}, - [859] = {.lex_state = 51}, - [860] = {.lex_state = 51}, - [861] = {.lex_state = 51}, - [862] = {.lex_state = 51}, - [863] = {.lex_state = 51}, - [864] = {.lex_state = 51}, - [865] = {.lex_state = 51}, - [866] = {.lex_state = 51}, - [867] = {.lex_state = 51}, - [868] = {.lex_state = 48}, - [869] = {.lex_state = 48}, - [870] = {.lex_state = 48}, - [871] = {.lex_state = 48}, - [872] = {.lex_state = 51}, - [873] = {.lex_state = 48}, - [874] = {.lex_state = 48}, - [875] = {.lex_state = 48}, - [876] = {.lex_state = 48}, - [877] = {.lex_state = 48}, - [878] = {.lex_state = 48}, - [879] = {.lex_state = 48}, - [880] = {.lex_state = 48}, - [881] = {.lex_state = 48}, - [882] = {.lex_state = 48}, - [883] = {.lex_state = 51}, - [884] = {.lex_state = 51}, - [885] = {.lex_state = 48}, - [886] = {.lex_state = 48}, - [887] = {.lex_state = 48}, + [780] = {.lex_state = 52}, + [781] = {.lex_state = 54}, + [782] = {.lex_state = 54}, + [783] = {.lex_state = 52}, + [784] = {.lex_state = 54}, + [785] = {.lex_state = 54}, + [786] = {.lex_state = 52}, + [787] = {.lex_state = 52}, + [788] = {.lex_state = 52}, + [789] = {.lex_state = 52}, + [790] = {.lex_state = 52}, + [791] = {.lex_state = 52}, + [792] = {.lex_state = 52}, + [793] = {.lex_state = 52}, + [794] = {.lex_state = 52}, + [795] = {.lex_state = 54}, + [796] = {.lex_state = 54}, + [797] = {.lex_state = 54}, + [798] = {.lex_state = 54}, + [799] = {.lex_state = 54}, + [800] = {.lex_state = 54}, + [801] = {.lex_state = 54}, + [802] = {.lex_state = 54}, + [803] = {.lex_state = 54}, + [804] = {.lex_state = 54}, + [805] = {.lex_state = 54}, + [806] = {.lex_state = 54}, + [807] = {.lex_state = 54}, + [808] = {.lex_state = 54}, + [809] = {.lex_state = 54}, + [810] = {.lex_state = 54}, + [811] = {.lex_state = 54}, + [812] = {.lex_state = 54}, + [813] = {.lex_state = 54}, + [814] = {.lex_state = 54}, + [815] = {.lex_state = 54}, + [816] = {.lex_state = 54}, + [817] = {.lex_state = 54}, + [818] = {.lex_state = 54}, + [819] = {.lex_state = 54}, + [820] = {.lex_state = 54}, + [821] = {.lex_state = 52}, + [822] = {.lex_state = 54}, + [823] = {.lex_state = 54}, + [824] = {.lex_state = 54}, + [825] = {.lex_state = 54}, + [826] = {.lex_state = 54}, + [827] = {.lex_state = 54}, + [828] = {.lex_state = 54}, + [829] = {.lex_state = 54}, + [830] = {.lex_state = 54}, + [831] = {.lex_state = 54}, + [832] = {.lex_state = 54}, + [833] = {.lex_state = 54}, + [834] = {.lex_state = 54}, + [835] = {.lex_state = 54}, + [836] = {.lex_state = 54}, + [837] = {.lex_state = 54}, + [838] = {.lex_state = 54}, + [839] = {.lex_state = 54}, + [840] = {.lex_state = 54}, + [841] = {.lex_state = 54}, + [842] = {.lex_state = 54}, + [843] = {.lex_state = 54}, + [844] = {.lex_state = 54}, + [845] = {.lex_state = 54}, + [846] = {.lex_state = 54}, + [847] = {.lex_state = 54}, + [848] = {.lex_state = 54}, + [849] = {.lex_state = 54}, + [850] = {.lex_state = 54}, + [851] = {.lex_state = 54}, + [852] = {.lex_state = 54}, + [853] = {.lex_state = 54}, + [854] = {.lex_state = 54}, + [855] = {.lex_state = 54}, + [856] = {.lex_state = 54}, + [857] = {.lex_state = 54}, + [858] = {.lex_state = 54}, + [859] = {.lex_state = 54}, + [860] = {.lex_state = 54}, + [861] = {.lex_state = 54}, + [862] = {.lex_state = 54}, + [863] = {.lex_state = 54}, + [864] = {.lex_state = 54}, + [865] = {.lex_state = 54}, + [866] = {.lex_state = 54}, + [867] = {.lex_state = 54}, + [868] = {.lex_state = 54}, + [869] = {.lex_state = 54}, + [870] = {.lex_state = 54}, + [871] = {.lex_state = 54}, + [872] = {.lex_state = 54}, + [873] = {.lex_state = 54}, + [874] = {.lex_state = 54}, + [875] = {.lex_state = 54}, + [876] = {.lex_state = 54}, + [877] = {.lex_state = 54}, + [878] = {.lex_state = 54}, + [879] = {.lex_state = 54}, + [880] = {.lex_state = 54}, + [881] = {.lex_state = 54}, + [882] = {.lex_state = 54}, + [883] = {.lex_state = 54}, + [884] = {.lex_state = 54}, + [885] = {.lex_state = 54}, + [886] = {.lex_state = 54}, + [887] = {.lex_state = 51}, [888] = {.lex_state = 51}, [889] = {.lex_state = 51}, - [890] = {.lex_state = 48}, - [891] = {.lex_state = 48}, + [890] = {.lex_state = 54}, + [891] = {.lex_state = 51}, [892] = {.lex_state = 51}, [893] = {.lex_state = 51}, - [894] = {.lex_state = 48}, - [895] = {.lex_state = 48}, - [896] = {.lex_state = 48}, - [897] = {.lex_state = 48}, - [898] = {.lex_state = 52}, - [899] = {.lex_state = 56}, - [900] = {.lex_state = 52}, - [901] = {.lex_state = 56}, - [902] = {.lex_state = 48}, - [903] = {.lex_state = 52}, - [904] = {.lex_state = 56}, - [905] = {.lex_state = 52}, - [906] = {.lex_state = 52}, - [907] = {.lex_state = 52}, - [908] = {.lex_state = 52}, + [894] = {.lex_state = 51}, + [895] = {.lex_state = 54}, + [896] = {.lex_state = 51}, + [897] = {.lex_state = 51}, + [898] = {.lex_state = 51}, + [899] = {.lex_state = 54}, + [900] = {.lex_state = 51}, + [901] = {.lex_state = 51}, + [902] = {.lex_state = 51}, + [903] = {.lex_state = 54}, + [904] = {.lex_state = 51}, + [905] = {.lex_state = 54}, + [906] = {.lex_state = 51}, + [907] = {.lex_state = 51}, + [908] = {.lex_state = 51}, [909] = {.lex_state = 51}, - [910] = {.lex_state = 52}, - [911] = {.lex_state = 56}, - [912] = {.lex_state = 52}, - [913] = {.lex_state = 52}, - [914] = {.lex_state = 52}, - [915] = {.lex_state = 52}, - [916] = {.lex_state = 52}, - [917] = {.lex_state = 52}, - [918] = {.lex_state = 56}, - [919] = {.lex_state = 52}, - [920] = {.lex_state = 56}, - [921] = {.lex_state = 56}, - [922] = {.lex_state = 51}, - [923] = {.lex_state = 56}, - [924] = {.lex_state = 52}, - [925] = {.lex_state = 56}, - [926] = {.lex_state = 56}, - [927] = {.lex_state = 56}, + [910] = {.lex_state = 51}, + [911] = {.lex_state = 54}, + [912] = {.lex_state = 54}, + [913] = {.lex_state = 51}, + [914] = {.lex_state = 51}, + [915] = {.lex_state = 51}, + [916] = {.lex_state = 51}, + [917] = {.lex_state = 55}, + [918] = {.lex_state = 55}, + [919] = {.lex_state = 59}, + [920] = {.lex_state = 59}, + [921] = {.lex_state = 59}, + [922] = {.lex_state = 59}, + [923] = {.lex_state = 59}, + [924] = {.lex_state = 59}, + [925] = {.lex_state = 54}, + [926] = {.lex_state = 59}, + [927] = {.lex_state = 59}, [928] = {.lex_state = 51}, - [929] = {.lex_state = 48}, - [930] = {.lex_state = 48}, - [931] = {.lex_state = 56}, - [932] = {.lex_state = 48}, - [933] = {.lex_state = 52}, - [934] = {.lex_state = 52}, - [935] = {.lex_state = 56}, - [936] = {.lex_state = 56}, - [937] = {.lex_state = 56}, - [938] = {.lex_state = 56}, - [939] = {.lex_state = 56}, - [940] = {.lex_state = 56}, - [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 = 51}, - [952] = {.lex_state = 51}, - [953] = {.lex_state = 51}, - [954] = {.lex_state = 51}, - [955] = {.lex_state = 51}, + [929] = {.lex_state = 59}, + [930] = {.lex_state = 59}, + [931] = {.lex_state = 59}, + [932] = {.lex_state = 55}, + [933] = {.lex_state = 55}, + [934] = {.lex_state = 55}, + [935] = {.lex_state = 55}, + [936] = {.lex_state = 51}, + [937] = {.lex_state = 55}, + [938] = {.lex_state = 55}, + [939] = {.lex_state = 55}, + [940] = {.lex_state = 55}, + [941] = {.lex_state = 55}, + [942] = {.lex_state = 55}, + [943] = {.lex_state = 55}, + [944] = {.lex_state = 55}, + [945] = {.lex_state = 55}, + [946] = {.lex_state = 54}, + [947] = {.lex_state = 59}, + [948] = {.lex_state = 59}, + [949] = {.lex_state = 59}, + [950] = {.lex_state = 55}, + [951] = {.lex_state = 59}, + [952] = {.lex_state = 55}, + [953] = {.lex_state = 55}, + [954] = {.lex_state = 59}, + [955] = {.lex_state = 59}, [956] = {.lex_state = 51}, - [957] = {.lex_state = 51}, - [958] = {.lex_state = 51}, - [959] = {.lex_state = 49}, - [960] = {.lex_state = 49}, - [961] = {.lex_state = 49}, - [962] = {.lex_state = 49}, - [963] = {.lex_state = 49}, - [964] = {.lex_state = 49}, - [965] = {.lex_state = 49}, - [966] = {.lex_state = 49}, - [967] = {.lex_state = 49}, - [968] = {.lex_state = 49}, - [969] = {.lex_state = 49}, - [970] = {.lex_state = 49}, - [971] = {.lex_state = 49}, - [972] = {.lex_state = 51}, - [973] = {.lex_state = 51}, - [974] = {.lex_state = 51}, - [975] = {.lex_state = 51}, - [976] = {.lex_state = 51}, - [977] = {.lex_state = 51}, - [978] = {.lex_state = 51}, - [979] = {.lex_state = 51}, - [980] = {.lex_state = 51}, - [981] = {.lex_state = 51}, - [982] = {.lex_state = 51}, - [983] = {.lex_state = 51}, - [984] = {.lex_state = 51}, - [985] = {.lex_state = 51}, - [986] = {.lex_state = 51}, - [987] = {.lex_state = 51}, - [988] = {.lex_state = 51}, - [989] = {.lex_state = 51}, - [990] = {.lex_state = 51}, - [991] = {.lex_state = 51}, - [992] = {.lex_state = 51}, - [993] = {.lex_state = 51}, - [994] = {.lex_state = 51}, - [995] = {.lex_state = 51}, - [996] = {.lex_state = 51}, - [997] = {.lex_state = 51}, - [998] = {.lex_state = 51}, - [999] = {.lex_state = 51}, - [1000] = {.lex_state = 51}, - [1001] = {.lex_state = 51}, - [1002] = {.lex_state = 51}, - [1003] = {.lex_state = 51}, - [1004] = {.lex_state = 51}, - [1005] = {.lex_state = 51}, - [1006] = {.lex_state = 51}, - [1007] = {.lex_state = 51}, - [1008] = {.lex_state = 52}, - [1009] = {.lex_state = 51}, - [1010] = {.lex_state = 51}, - [1011] = {.lex_state = 51}, - [1012] = {.lex_state = 52}, - [1013] = {.lex_state = 51}, - [1014] = {.lex_state = 52}, - [1015] = {.lex_state = 51}, - [1016] = {.lex_state = 51}, - [1017] = {.lex_state = 52}, - [1018] = {.lex_state = 48}, - [1019] = {.lex_state = 48}, - [1020] = {.lex_state = 51}, - [1021] = {.lex_state = 48}, - [1022] = {.lex_state = 48}, - [1023] = {.lex_state = 48}, - [1024] = {.lex_state = 48}, - [1025] = {.lex_state = 48}, - [1026] = {.lex_state = 48}, - [1027] = {.lex_state = 48}, - [1028] = {.lex_state = 51}, - [1029] = {.lex_state = 51}, - [1030] = {.lex_state = 48}, - [1031] = {.lex_state = 48}, - [1032] = {.lex_state = 48}, - [1033] = {.lex_state = 48}, - [1034] = {.lex_state = 48}, - [1035] = {.lex_state = 51}, - [1036] = {.lex_state = 48}, - [1037] = {.lex_state = 51}, - [1038] = {.lex_state = 51}, - [1039] = {.lex_state = 48}, - [1040] = {.lex_state = 48}, - [1041] = {.lex_state = 48}, - [1042] = {.lex_state = 48}, + [957] = {.lex_state = 59}, + [958] = {.lex_state = 59}, + [959] = {.lex_state = 59}, + [960] = {.lex_state = 51}, + [961] = {.lex_state = 54}, + [962] = {.lex_state = 55}, + [963] = {.lex_state = 55}, + [964] = {.lex_state = 122}, + [965] = {.lex_state = 122}, + [966] = {.lex_state = 122}, + [967] = {.lex_state = 122}, + [968] = {.lex_state = 122}, + [969] = {.lex_state = 122}, + [970] = {.lex_state = 122}, + [971] = {.lex_state = 122}, + [972] = {.lex_state = 122}, + [973] = {.lex_state = 122}, + [974] = {.lex_state = 54}, + [975] = {.lex_state = 54}, + [976] = {.lex_state = 54}, + [977] = {.lex_state = 54}, + [978] = {.lex_state = 54}, + [979] = {.lex_state = 54}, + [980] = {.lex_state = 54}, + [981] = {.lex_state = 54}, + [982] = {.lex_state = 52}, + [983] = {.lex_state = 52}, + [984] = {.lex_state = 52}, + [985] = {.lex_state = 52}, + [986] = {.lex_state = 52}, + [987] = {.lex_state = 52}, + [988] = {.lex_state = 52}, + [989] = {.lex_state = 52}, + [990] = {.lex_state = 52}, + [991] = {.lex_state = 52}, + [992] = {.lex_state = 52}, + [993] = {.lex_state = 52}, + [994] = {.lex_state = 52}, + [995] = {.lex_state = 54}, + [996] = {.lex_state = 54}, + [997] = {.lex_state = 54}, + [998] = {.lex_state = 54}, + [999] = {.lex_state = 54}, + [1000] = {.lex_state = 54}, + [1001] = {.lex_state = 54}, + [1002] = {.lex_state = 54}, + [1003] = {.lex_state = 54}, + [1004] = {.lex_state = 54}, + [1005] = {.lex_state = 54}, + [1006] = {.lex_state = 54}, + [1007] = {.lex_state = 54}, + [1008] = {.lex_state = 54}, + [1009] = {.lex_state = 54}, + [1010] = {.lex_state = 54}, + [1011] = {.lex_state = 54}, + [1012] = {.lex_state = 54}, + [1013] = {.lex_state = 54}, + [1014] = {.lex_state = 54}, + [1015] = {.lex_state = 54}, + [1016] = {.lex_state = 54}, + [1017] = {.lex_state = 54}, + [1018] = {.lex_state = 54}, + [1019] = {.lex_state = 54}, + [1020] = {.lex_state = 54}, + [1021] = {.lex_state = 54}, + [1022] = {.lex_state = 54}, + [1023] = {.lex_state = 54}, + [1024] = {.lex_state = 54}, + [1025] = {.lex_state = 54}, + [1026] = {.lex_state = 54}, + [1027] = {.lex_state = 54}, + [1028] = {.lex_state = 54}, + [1029] = {.lex_state = 54}, + [1030] = {.lex_state = 55}, + [1031] = {.lex_state = 55}, + [1032] = {.lex_state = 54}, + [1033] = {.lex_state = 55}, + [1034] = {.lex_state = 55}, + [1035] = {.lex_state = 54}, + [1036] = {.lex_state = 54}, + [1037] = {.lex_state = 54}, + [1038] = {.lex_state = 54}, + [1039] = {.lex_state = 54}, + [1040] = {.lex_state = 54}, + [1041] = {.lex_state = 54}, + [1042] = {.lex_state = 51}, [1043] = {.lex_state = 51}, - [1044] = {.lex_state = 48}, - [1045] = {.lex_state = 48}, - [1046] = {.lex_state = 48}, - [1047] = {.lex_state = 48}, - [1048] = {.lex_state = 48}, - [1049] = {.lex_state = 48}, - [1050] = {.lex_state = 48}, - [1051] = {.lex_state = 48}, - [1052] = {.lex_state = 51}, - [1053] = {.lex_state = 48}, - [1054] = {.lex_state = 48}, - [1055] = {.lex_state = 48}, - [1056] = {.lex_state = 48}, - [1057] = {.lex_state = 48}, - [1058] = {.lex_state = 48}, - [1059] = {.lex_state = 48}, + [1044] = {.lex_state = 51}, + [1045] = {.lex_state = 51}, + [1046] = {.lex_state = 51}, + [1047] = {.lex_state = 51}, + [1048] = {.lex_state = 54}, + [1049] = {.lex_state = 51}, + [1050] = {.lex_state = 51}, + [1051] = {.lex_state = 51}, + [1052] = {.lex_state = 54}, + [1053] = {.lex_state = 54}, + [1054] = {.lex_state = 54}, + [1055] = {.lex_state = 54}, + [1056] = {.lex_state = 54}, + [1057] = {.lex_state = 51}, + [1058] = {.lex_state = 54}, + [1059] = {.lex_state = 51}, [1060] = {.lex_state = 51}, - [1061] = {.lex_state = 48}, - [1062] = {.lex_state = 51}, - [1063] = {.lex_state = 48}, - [1064] = {.lex_state = 48}, - [1065] = {.lex_state = 48}, - [1066] = {.lex_state = 48}, - [1067] = {.lex_state = 48}, - [1068] = {.lex_state = 48}, - [1069] = {.lex_state = 48}, - [1070] = {.lex_state = 48}, + [1061] = {.lex_state = 51}, + [1062] = {.lex_state = 54}, + [1063] = {.lex_state = 51}, + [1064] = {.lex_state = 51}, + [1065] = {.lex_state = 51}, + [1066] = {.lex_state = 51}, + [1067] = {.lex_state = 51}, + [1068] = {.lex_state = 51}, + [1069] = {.lex_state = 51}, + [1070] = {.lex_state = 51}, [1071] = {.lex_state = 51}, [1072] = {.lex_state = 51}, - [1073] = {.lex_state = 51}, - [1074] = {.lex_state = 48}, - [1075] = {.lex_state = 48}, - [1076] = {.lex_state = 48}, + [1073] = {.lex_state = 54}, + [1074] = {.lex_state = 51}, + [1075] = {.lex_state = 51}, + [1076] = {.lex_state = 51}, [1077] = {.lex_state = 51}, - [1078] = {.lex_state = 48}, - [1079] = {.lex_state = 48}, - [1080] = {.lex_state = 48}, - [1081] = {.lex_state = 48}, - [1082] = {.lex_state = 48}, - [1083] = {.lex_state = 48}, - [1084] = {.lex_state = 48}, - [1085] = {.lex_state = 48}, - [1086] = {.lex_state = 48}, - [1087] = {.lex_state = 48}, - [1088] = {.lex_state = 48}, + [1078] = {.lex_state = 51}, + [1079] = {.lex_state = 51}, + [1080] = {.lex_state = 51}, + [1081] = {.lex_state = 51}, + [1082] = {.lex_state = 51}, + [1083] = {.lex_state = 51}, + [1084] = {.lex_state = 51}, + [1085] = {.lex_state = 51}, + [1086] = {.lex_state = 51}, + [1087] = {.lex_state = 51}, + [1088] = {.lex_state = 51}, [1089] = {.lex_state = 51}, - [1090] = {.lex_state = 48}, - [1091] = {.lex_state = 48}, - [1092] = {.lex_state = 48}, - [1093] = {.lex_state = 48}, - [1094] = {.lex_state = 48}, - [1095] = {.lex_state = 48}, - [1096] = {.lex_state = 48}, - [1097] = {.lex_state = 48}, - [1098] = {.lex_state = 48}, + [1090] = {.lex_state = 51}, + [1091] = {.lex_state = 51}, + [1092] = {.lex_state = 51}, + [1093] = {.lex_state = 51}, + [1094] = {.lex_state = 51}, + [1095] = {.lex_state = 51}, + [1096] = {.lex_state = 54}, + [1097] = {.lex_state = 51}, + [1098] = {.lex_state = 54}, [1099] = {.lex_state = 51}, - [1100] = {.lex_state = 48}, - [1101] = {.lex_state = 48}, + [1100] = {.lex_state = 51}, + [1101] = {.lex_state = 54}, [1102] = {.lex_state = 51}, - [1103] = {.lex_state = 48}, - [1104] = {.lex_state = 48}, + [1103] = {.lex_state = 51}, + [1104] = {.lex_state = 51}, [1105] = {.lex_state = 51}, - [1106] = {.lex_state = 48}, - [1107] = {.lex_state = 51}, + [1106] = {.lex_state = 54}, + [1107] = {.lex_state = 54}, [1108] = {.lex_state = 51}, [1109] = {.lex_state = 51}, [1110] = {.lex_state = 51}, - [1111] = {.lex_state = 48}, - [1112] = {.lex_state = 48}, - [1113] = {.lex_state = 51}, - [1114] = {.lex_state = 48}, - [1115] = {.lex_state = 48}, - [1116] = {.lex_state = 51}, - [1117] = {.lex_state = 48}, + [1111] = {.lex_state = 51}, + [1112] = {.lex_state = 51}, + [1113] = {.lex_state = 54}, + [1114] = {.lex_state = 54}, + [1115] = {.lex_state = 51}, + [1116] = {.lex_state = 54}, + [1117] = {.lex_state = 54}, [1118] = {.lex_state = 51}, - [1119] = {.lex_state = 51}, + [1119] = {.lex_state = 54}, [1120] = {.lex_state = 51}, [1121] = {.lex_state = 51}, - [1122] = {.lex_state = 51}, + [1122] = {.lex_state = 54}, [1123] = {.lex_state = 51}, - [1124] = {.lex_state = 51}, - [1125] = {.lex_state = 51}, + [1124] = {.lex_state = 54}, + [1125] = {.lex_state = 54}, [1126] = {.lex_state = 51}, - [1127] = {.lex_state = 51}, + [1127] = {.lex_state = 54}, [1128] = {.lex_state = 51}, - [1129] = {.lex_state = 51}, + [1129] = {.lex_state = 54}, [1130] = {.lex_state = 51}, [1131] = {.lex_state = 51}, [1132] = {.lex_state = 51}, @@ -13946,522 +14043,522 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1137] = {.lex_state = 51}, [1138] = {.lex_state = 51}, [1139] = {.lex_state = 51}, - [1140] = {.lex_state = 52}, + [1140] = {.lex_state = 54}, [1141] = {.lex_state = 51}, - [1142] = {.lex_state = 51}, + [1142] = {.lex_state = 54}, [1143] = {.lex_state = 51}, - [1144] = {.lex_state = 51}, - [1145] = {.lex_state = 51}, - [1146] = {.lex_state = 47}, - [1147] = {.lex_state = 51}, - [1148] = {.lex_state = 52}, - [1149] = {.lex_state = 51}, - [1150] = {.lex_state = 52}, - [1151] = {.lex_state = 25}, - [1152] = {.lex_state = 47}, - [1153] = {.lex_state = 51}, - [1154] = {.lex_state = 51}, - [1155] = {.lex_state = 51}, - [1156] = {.lex_state = 51}, - [1157] = {.lex_state = 52}, - [1158] = {.lex_state = 51}, - [1159] = {.lex_state = 47}, - [1160] = {.lex_state = 52}, - [1161] = {.lex_state = 47}, - [1162] = {.lex_state = 52}, - [1163] = {.lex_state = 52}, - [1164] = {.lex_state = 52}, - [1165] = {.lex_state = 52}, - [1166] = {.lex_state = 52}, - [1167] = {.lex_state = 47}, - [1168] = {.lex_state = 52}, - [1169] = {.lex_state = 52}, - [1170] = {.lex_state = 52}, - [1171] = {.lex_state = 47}, - [1172] = {.lex_state = 47}, - [1173] = {.lex_state = 47}, - [1174] = {.lex_state = 52}, - [1175] = {.lex_state = 52}, - [1176] = {.lex_state = 51}, - [1177] = {.lex_state = 47}, - [1178] = {.lex_state = 47}, - [1179] = {.lex_state = 47}, - [1180] = {.lex_state = 52}, - [1181] = {.lex_state = 47}, - [1182] = {.lex_state = 47}, - [1183] = {.lex_state = 47}, - [1184] = {.lex_state = 51}, - [1185] = {.lex_state = 47}, - [1186] = {.lex_state = 47}, - [1187] = {.lex_state = 47}, - [1188] = {.lex_state = 47}, - [1189] = {.lex_state = 47}, - [1190] = {.lex_state = 47}, - [1191] = {.lex_state = 47}, - [1192] = {.lex_state = 52}, - [1193] = {.lex_state = 47}, - [1194] = {.lex_state = 47}, - [1195] = {.lex_state = 47}, - [1196] = {.lex_state = 51}, - [1197] = {.lex_state = 52}, - [1198] = {.lex_state = 51}, - [1199] = {.lex_state = 47}, - [1200] = {.lex_state = 47}, - [1201] = {.lex_state = 47}, - [1202] = {.lex_state = 47}, - [1203] = {.lex_state = 47}, - [1204] = {.lex_state = 47}, - [1205] = {.lex_state = 47}, - [1206] = {.lex_state = 47}, - [1207] = {.lex_state = 52}, - [1208] = {.lex_state = 47}, - [1209] = {.lex_state = 47}, - [1210] = {.lex_state = 47}, - [1211] = {.lex_state = 52}, - [1212] = {.lex_state = 47}, - [1213] = {.lex_state = 47}, - [1214] = {.lex_state = 47}, - [1215] = {.lex_state = 47}, - [1216] = {.lex_state = 47}, - [1217] = {.lex_state = 47}, - [1218] = {.lex_state = 51}, - [1219] = {.lex_state = 47}, - [1220] = {.lex_state = 25}, - [1221] = {.lex_state = 25}, - [1222] = {.lex_state = 25}, - [1223] = {.lex_state = 51}, - [1224] = {.lex_state = 25}, - [1225] = {.lex_state = 25}, - [1226] = {.lex_state = 51}, - [1227] = {.lex_state = 25}, - [1228] = {.lex_state = 51}, - [1229] = {.lex_state = 51}, - [1230] = {.lex_state = 25}, - [1231] = {.lex_state = 25}, - [1232] = {.lex_state = 25}, - [1233] = {.lex_state = 25}, - [1234] = {.lex_state = 25}, - [1235] = {.lex_state = 51}, - [1236] = {.lex_state = 25}, - [1237] = {.lex_state = 52}, - [1238] = {.lex_state = 25}, - [1239] = {.lex_state = 51}, - [1240] = {.lex_state = 25}, - [1241] = {.lex_state = 25}, - [1242] = {.lex_state = 25}, - [1243] = {.lex_state = 25}, - [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 51}, - [1246] = {.lex_state = 25}, - [1247] = {.lex_state = 25}, + [1144] = {.lex_state = 54}, + [1145] = {.lex_state = 54}, + [1146] = {.lex_state = 54}, + [1147] = {.lex_state = 54}, + [1148] = {.lex_state = 54}, + [1149] = {.lex_state = 54}, + [1150] = {.lex_state = 54}, + [1151] = {.lex_state = 54}, + [1152] = {.lex_state = 54}, + [1153] = {.lex_state = 54}, + [1154] = {.lex_state = 54}, + [1155] = {.lex_state = 54}, + [1156] = {.lex_state = 54}, + [1157] = {.lex_state = 54}, + [1158] = {.lex_state = 54}, + [1159] = {.lex_state = 54}, + [1160] = {.lex_state = 54}, + [1161] = {.lex_state = 54}, + [1162] = {.lex_state = 54}, + [1163] = {.lex_state = 54}, + [1164] = {.lex_state = 55}, + [1165] = {.lex_state = 54}, + [1166] = {.lex_state = 54}, + [1167] = {.lex_state = 54}, + [1168] = {.lex_state = 55}, + [1169] = {.lex_state = 54}, + [1170] = {.lex_state = 54}, + [1171] = {.lex_state = 54}, + [1172] = {.lex_state = 50}, + [1173] = {.lex_state = 55}, + [1174] = {.lex_state = 54}, + [1175] = {.lex_state = 54}, + [1176] = {.lex_state = 55}, + [1177] = {.lex_state = 25}, + [1178] = {.lex_state = 54}, + [1179] = {.lex_state = 54}, + [1180] = {.lex_state = 50}, + [1181] = {.lex_state = 54}, + [1182] = {.lex_state = 54}, + [1183] = {.lex_state = 50}, + [1184] = {.lex_state = 54}, + [1185] = {.lex_state = 54}, + [1186] = {.lex_state = 55}, + [1187] = {.lex_state = 55}, + [1188] = {.lex_state = 54}, + [1189] = {.lex_state = 54}, + [1190] = {.lex_state = 50}, + [1191] = {.lex_state = 50}, + [1192] = {.lex_state = 55}, + [1193] = {.lex_state = 55}, + [1194] = {.lex_state = 55}, + [1195] = {.lex_state = 50}, + [1196] = {.lex_state = 50}, + [1197] = {.lex_state = 50}, + [1198] = {.lex_state = 50}, + [1199] = {.lex_state = 50}, + [1200] = {.lex_state = 50}, + [1201] = {.lex_state = 50}, + [1202] = {.lex_state = 50}, + [1203] = {.lex_state = 50}, + [1204] = {.lex_state = 50}, + [1205] = {.lex_state = 50}, + [1206] = {.lex_state = 55}, + [1207] = {.lex_state = 50}, + [1208] = {.lex_state = 55}, + [1209] = {.lex_state = 55}, + [1210] = {.lex_state = 55}, + [1211] = {.lex_state = 50}, + [1212] = {.lex_state = 50}, + [1213] = {.lex_state = 55}, + [1214] = {.lex_state = 55}, + [1215] = {.lex_state = 55}, + [1216] = {.lex_state = 55}, + [1217] = {.lex_state = 50}, + [1218] = {.lex_state = 55}, + [1219] = {.lex_state = 50}, + [1220] = {.lex_state = 54}, + [1221] = {.lex_state = 54}, + [1222] = {.lex_state = 50}, + [1223] = {.lex_state = 50}, + [1224] = {.lex_state = 55}, + [1225] = {.lex_state = 50}, + [1226] = {.lex_state = 50}, + [1227] = {.lex_state = 50}, + [1228] = {.lex_state = 54}, + [1229] = {.lex_state = 50}, + [1230] = {.lex_state = 50}, + [1231] = {.lex_state = 55}, + [1232] = {.lex_state = 50}, + [1233] = {.lex_state = 55}, + [1234] = {.lex_state = 50}, + [1235] = {.lex_state = 50}, + [1236] = {.lex_state = 50}, + [1237] = {.lex_state = 50}, + [1238] = {.lex_state = 50}, + [1239] = {.lex_state = 50}, + [1240] = {.lex_state = 50}, + [1241] = {.lex_state = 50}, + [1242] = {.lex_state = 50}, + [1243] = {.lex_state = 50}, + [1244] = {.lex_state = 50}, + [1245] = {.lex_state = 50}, + [1246] = {.lex_state = 50}, + [1247] = {.lex_state = 54}, [1248] = {.lex_state = 25}, - [1249] = {.lex_state = 51}, - [1250] = {.lex_state = 25}, - [1251] = {.lex_state = 25}, - [1252] = {.lex_state = 25}, - [1253] = {.lex_state = 51}, - [1254] = {.lex_state = 52}, - [1255] = {.lex_state = 25}, - [1256] = {.lex_state = 25}, + [1249] = {.lex_state = 25}, + [1250] = {.lex_state = 54}, + [1251] = {.lex_state = 54}, + [1252] = {.lex_state = 55}, + [1253] = {.lex_state = 25}, + [1254] = {.lex_state = 25}, + [1255] = {.lex_state = 54}, + [1256] = {.lex_state = 54}, [1257] = {.lex_state = 25}, - [1258] = {.lex_state = 51}, + [1258] = {.lex_state = 25}, [1259] = {.lex_state = 25}, - [1260] = {.lex_state = 51}, - [1261] = {.lex_state = 51}, + [1260] = {.lex_state = 54}, + [1261] = {.lex_state = 54}, [1262] = {.lex_state = 25}, - [1263] = {.lex_state = 51}, - [1264] = {.lex_state = 25}, - [1265] = {.lex_state = 51}, + [1263] = {.lex_state = 54}, + [1264] = {.lex_state = 54}, + [1265] = {.lex_state = 25}, [1266] = {.lex_state = 25}, [1267] = {.lex_state = 25}, [1268] = {.lex_state = 25}, - [1269] = {.lex_state = 51}, - [1270] = {.lex_state = 51}, - [1271] = {.lex_state = 51}, - [1272] = {.lex_state = 51}, - [1273] = {.lex_state = 51}, - [1274] = {.lex_state = 51}, - [1275] = {.lex_state = 51}, - [1276] = {.lex_state = 51}, - [1277] = {.lex_state = 51}, - [1278] = {.lex_state = 51}, - [1279] = {.lex_state = 51}, - [1280] = {.lex_state = 51}, - [1281] = {.lex_state = 51}, - [1282] = {.lex_state = 51}, - [1283] = {.lex_state = 51}, - [1284] = {.lex_state = 51}, - [1285] = {.lex_state = 51}, - [1286] = {.lex_state = 51}, - [1287] = {.lex_state = 51}, - [1288] = {.lex_state = 51}, - [1289] = {.lex_state = 51}, - [1290] = {.lex_state = 49}, - [1291] = {.lex_state = 51}, - [1292] = {.lex_state = 51}, - [1293] = {.lex_state = 51}, - [1294] = {.lex_state = 49}, - [1295] = {.lex_state = 51}, - [1296] = {.lex_state = 51}, - [1297] = {.lex_state = 51}, - [1298] = {.lex_state = 49}, - [1299] = {.lex_state = 51}, - [1300] = {.lex_state = 49}, - [1301] = {.lex_state = 51}, - [1302] = {.lex_state = 51}, - [1303] = {.lex_state = 51}, - [1304] = {.lex_state = 51}, - [1305] = {.lex_state = 51}, - [1306] = {.lex_state = 51}, - [1307] = {.lex_state = 51}, - [1308] = {.lex_state = 51}, - [1309] = {.lex_state = 51}, - [1310] = {.lex_state = 55}, - [1311] = {.lex_state = 51}, - [1312] = {.lex_state = 51}, - [1313] = {.lex_state = 51}, - [1314] = {.lex_state = 51}, - [1315] = {.lex_state = 51}, - [1316] = {.lex_state = 51}, - [1317] = {.lex_state = 55}, - [1318] = {.lex_state = 51}, - [1319] = {.lex_state = 51}, - [1320] = {.lex_state = 51}, - [1321] = {.lex_state = 51}, - [1322] = {.lex_state = 51}, - [1323] = {.lex_state = 51}, - [1324] = {.lex_state = 51}, - [1325] = {.lex_state = 49}, - [1326] = {.lex_state = 49}, - [1327] = {.lex_state = 51}, - [1328] = {.lex_state = 55}, - [1329] = {.lex_state = 49}, - [1330] = {.lex_state = 49}, - [1331] = {.lex_state = 49}, - [1332] = {.lex_state = 51}, - [1333] = {.lex_state = 51}, - [1334] = {.lex_state = 51}, - [1335] = {.lex_state = 51}, - [1336] = {.lex_state = 49}, - [1337] = {.lex_state = 51}, - [1338] = {.lex_state = 49}, - [1339] = {.lex_state = 49}, - [1340] = {.lex_state = 51}, - [1341] = {.lex_state = 51}, - [1342] = {.lex_state = 51}, - [1343] = {.lex_state = 48}, - [1344] = {.lex_state = 51}, - [1345] = {.lex_state = 49}, - [1346] = {.lex_state = 49}, - [1347] = {.lex_state = 51}, - [1348] = {.lex_state = 49}, - [1349] = {.lex_state = 49}, - [1350] = {.lex_state = 51}, - [1351] = {.lex_state = 49}, - [1352] = {.lex_state = 49}, - [1353] = {.lex_state = 51}, - [1354] = {.lex_state = 51}, - [1355] = {.lex_state = 51}, - [1356] = {.lex_state = 51}, - [1357] = {.lex_state = 119}, - [1358] = {.lex_state = 119}, - [1359] = {.lex_state = 51}, - [1360] = {.lex_state = 51}, - [1361] = {.lex_state = 51}, - [1362] = {.lex_state = 119}, + [1269] = {.lex_state = 25}, + [1270] = {.lex_state = 25}, + [1271] = {.lex_state = 54}, + [1272] = {.lex_state = 25}, + [1273] = {.lex_state = 25}, + [1274] = {.lex_state = 54}, + [1275] = {.lex_state = 25}, + [1276] = {.lex_state = 54}, + [1277] = {.lex_state = 25}, + [1278] = {.lex_state = 54}, + [1279] = {.lex_state = 25}, + [1280] = {.lex_state = 25}, + [1281] = {.lex_state = 25}, + [1282] = {.lex_state = 25}, + [1283] = {.lex_state = 25}, + [1284] = {.lex_state = 25}, + [1285] = {.lex_state = 25}, + [1286] = {.lex_state = 25}, + [1287] = {.lex_state = 25}, + [1288] = {.lex_state = 25}, + [1289] = {.lex_state = 25}, + [1290] = {.lex_state = 25}, + [1291] = {.lex_state = 25}, + [1292] = {.lex_state = 55}, + [1293] = {.lex_state = 25}, + [1294] = {.lex_state = 54}, + [1295] = {.lex_state = 25}, + [1296] = {.lex_state = 25}, + [1297] = {.lex_state = 54}, + [1298] = {.lex_state = 54}, + [1299] = {.lex_state = 54}, + [1300] = {.lex_state = 54}, + [1301] = {.lex_state = 54}, + [1302] = {.lex_state = 54}, + [1303] = {.lex_state = 54}, + [1304] = {.lex_state = 54}, + [1305] = {.lex_state = 54}, + [1306] = {.lex_state = 54}, + [1307] = {.lex_state = 54}, + [1308] = {.lex_state = 54}, + [1309] = {.lex_state = 54}, + [1310] = {.lex_state = 54}, + [1311] = {.lex_state = 54}, + [1312] = {.lex_state = 54}, + [1313] = {.lex_state = 54}, + [1314] = {.lex_state = 54}, + [1315] = {.lex_state = 54}, + [1316] = {.lex_state = 54}, + [1317] = {.lex_state = 54}, + [1318] = {.lex_state = 54}, + [1319] = {.lex_state = 52}, + [1320] = {.lex_state = 54}, + [1321] = {.lex_state = 52}, + [1322] = {.lex_state = 54}, + [1323] = {.lex_state = 52}, + [1324] = {.lex_state = 54}, + [1325] = {.lex_state = 52}, + [1326] = {.lex_state = 54}, + [1327] = {.lex_state = 54}, + [1328] = {.lex_state = 54}, + [1329] = {.lex_state = 54}, + [1330] = {.lex_state = 54}, + [1331] = {.lex_state = 54}, + [1332] = {.lex_state = 54}, + [1333] = {.lex_state = 54}, + [1334] = {.lex_state = 54}, + [1335] = {.lex_state = 54}, + [1336] = {.lex_state = 54}, + [1337] = {.lex_state = 58}, + [1338] = {.lex_state = 54}, + [1339] = {.lex_state = 54}, + [1340] = {.lex_state = 54}, + [1341] = {.lex_state = 54}, + [1342] = {.lex_state = 54}, + [1343] = {.lex_state = 54}, + [1344] = {.lex_state = 54}, + [1345] = {.lex_state = 54}, + [1346] = {.lex_state = 54}, + [1347] = {.lex_state = 54}, + [1348] = {.lex_state = 54}, + [1349] = {.lex_state = 54}, + [1350] = {.lex_state = 58}, + [1351] = {.lex_state = 54}, + [1352] = {.lex_state = 54}, + [1353] = {.lex_state = 54}, + [1354] = {.lex_state = 52}, + [1355] = {.lex_state = 52}, + [1356] = {.lex_state = 54}, + [1357] = {.lex_state = 54}, + [1358] = {.lex_state = 58}, + [1359] = {.lex_state = 54}, + [1360] = {.lex_state = 54}, + [1361] = {.lex_state = 54}, + [1362] = {.lex_state = 54}, [1363] = {.lex_state = 51}, - [1364] = {.lex_state = 51}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 51}, - [1367] = {.lex_state = 51}, - [1368] = {.lex_state = 51}, - [1369] = {.lex_state = 119}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 51}, - [1372] = {.lex_state = 51}, - [1373] = {.lex_state = 119}, - [1374] = {.lex_state = 51}, - [1375] = {.lex_state = 119}, - [1376] = {.lex_state = 119}, - [1377] = {.lex_state = 119}, - [1378] = {.lex_state = 119}, - [1379] = {.lex_state = 119}, - [1380] = {.lex_state = 48}, - [1381] = {.lex_state = 54}, - [1382] = {.lex_state = 48}, - [1383] = {.lex_state = 119}, + [1364] = {.lex_state = 52}, + [1365] = {.lex_state = 52}, + [1366] = {.lex_state = 54}, + [1367] = {.lex_state = 54}, + [1368] = {.lex_state = 54}, + [1369] = {.lex_state = 54}, + [1370] = {.lex_state = 52}, + [1371] = {.lex_state = 52}, + [1372] = {.lex_state = 52}, + [1373] = {.lex_state = 52}, + [1374] = {.lex_state = 52}, + [1375] = {.lex_state = 52}, + [1376] = {.lex_state = 54}, + [1377] = {.lex_state = 54}, + [1378] = {.lex_state = 54}, + [1379] = {.lex_state = 52}, + [1380] = {.lex_state = 52}, + [1381] = {.lex_state = 52}, + [1382] = {.lex_state = 52}, + [1383] = {.lex_state = 122}, [1384] = {.lex_state = 54}, - [1385] = {.lex_state = 51}, - [1386] = {.lex_state = 51}, - [1387] = {.lex_state = 48}, - [1388] = {.lex_state = 119}, - [1389] = {.lex_state = 54}, - [1390] = {.lex_state = 119}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 54}, + [1387] = {.lex_state = 54}, + [1388] = {.lex_state = 54}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 54}, [1391] = {.lex_state = 54}, - [1392] = {.lex_state = 51}, - [1393] = {.lex_state = 51}, - [1394] = {.lex_state = 119}, - [1395] = {.lex_state = 51}, - [1396] = {.lex_state = 119}, - [1397] = {.lex_state = 119}, - [1398] = {.lex_state = 51}, - [1399] = {.lex_state = 51}, - [1400] = {.lex_state = 51}, - [1401] = {.lex_state = 119}, - [1402] = {.lex_state = 119}, - [1403] = {.lex_state = 119}, - [1404] = {.lex_state = 119}, - [1405] = {.lex_state = 119}, - [1406] = {.lex_state = 119}, - [1407] = {.lex_state = 119}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 49}, - [1410] = {.lex_state = 49}, - [1411] = {.lex_state = 119}, - [1412] = {.lex_state = 51}, - [1413] = {.lex_state = 49}, - [1414] = {.lex_state = 119}, - [1415] = {.lex_state = 51}, + [1392] = {.lex_state = 54}, + [1393] = {.lex_state = 54}, + [1394] = {.lex_state = 122}, + [1395] = {.lex_state = 54}, + [1396] = {.lex_state = 122}, + [1397] = {.lex_state = 54}, + [1398] = {.lex_state = 54}, + [1399] = {.lex_state = 54}, + [1400] = {.lex_state = 54}, + [1401] = {.lex_state = 122}, + [1402] = {.lex_state = 122}, + [1403] = {.lex_state = 122}, + [1404] = {.lex_state = 122}, + [1405] = {.lex_state = 57}, + [1406] = {.lex_state = 122}, + [1407] = {.lex_state = 54}, + [1408] = {.lex_state = 57}, + [1409] = {.lex_state = 51}, + [1410] = {.lex_state = 122}, + [1411] = {.lex_state = 122}, + [1412] = {.lex_state = 57}, + [1413] = {.lex_state = 54}, + [1414] = {.lex_state = 122}, + [1415] = {.lex_state = 57}, [1416] = {.lex_state = 51}, - [1417] = {.lex_state = 119}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 51}, - [1420] = {.lex_state = 49}, - [1421] = {.lex_state = 119}, - [1422] = {.lex_state = 51}, - [1423] = {.lex_state = 51}, - [1424] = {.lex_state = 51}, - [1425] = {.lex_state = 119}, - [1426] = {.lex_state = 51}, - [1427] = {.lex_state = 119}, - [1428] = {.lex_state = 51}, - [1429] = {.lex_state = 119}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 119}, - [1432] = {.lex_state = 51}, - [1433] = {.lex_state = 51}, - [1434] = {.lex_state = 51}, - [1435] = {.lex_state = 51}, - [1436] = {.lex_state = 51}, - [1437] = {.lex_state = 119}, - [1438] = {.lex_state = 51}, - [1439] = {.lex_state = 119}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 51}, - [1442] = {.lex_state = 51}, - [1443] = {.lex_state = 51}, - [1444] = {.lex_state = 51}, - [1445] = {.lex_state = 51}, - [1446] = {.lex_state = 119}, - [1447] = {.lex_state = 119}, - [1448] = {.lex_state = 55}, - [1449] = {.lex_state = 119}, - [1450] = {.lex_state = 51}, - [1451] = {.lex_state = 119}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 55}, - [1454] = {.lex_state = 55}, - [1455] = {.lex_state = 55}, - [1456] = {.lex_state = 55}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 51}, - [1460] = {.lex_state = 51}, - [1461] = {.lex_state = 51}, - [1462] = {.lex_state = 55}, - [1463] = {.lex_state = 51}, - [1464] = {.lex_state = 55}, - [1465] = {.lex_state = 49}, - [1466] = {.lex_state = 51}, - [1467] = {.lex_state = 55}, - [1468] = {.lex_state = 51}, - [1469] = {.lex_state = 119}, - [1470] = {.lex_state = 51}, - [1471] = {.lex_state = 51}, - [1472] = {.lex_state = 51}, - [1473] = {.lex_state = 119}, - [1474] = {.lex_state = 119}, - [1475] = {.lex_state = 119}, - [1476] = {.lex_state = 55}, - [1477] = {.lex_state = 51}, - [1478] = {.lex_state = 55}, - [1479] = {.lex_state = 55}, - [1480] = {.lex_state = 51}, - [1481] = {.lex_state = 119}, - [1482] = {.lex_state = 119}, - [1483] = {.lex_state = 51}, - [1484] = {.lex_state = 119}, - [1485] = {.lex_state = 44}, - [1486] = {.lex_state = 119}, - [1487] = {.lex_state = 119}, - [1488] = {.lex_state = 119}, - [1489] = {.lex_state = 119}, - [1490] = {.lex_state = 119}, - [1491] = {.lex_state = 119}, - [1492] = {.lex_state = 119}, - [1493] = {.lex_state = 49}, - [1494] = {.lex_state = 51}, - [1495] = {.lex_state = 119}, - [1496] = {.lex_state = 119}, - [1497] = {.lex_state = 119}, - [1498] = {.lex_state = 51}, - [1499] = {.lex_state = 51}, - [1500] = {.lex_state = 119}, - [1501] = {.lex_state = 51}, - [1502] = {.lex_state = 30}, - [1503] = {.lex_state = 51}, - [1504] = {.lex_state = 51}, - [1505] = {.lex_state = 51}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 51}, - [1508] = {.lex_state = 51}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 51}, - [1511] = {.lex_state = 51}, - [1512] = {.lex_state = 51}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 32}, - [1515] = {.lex_state = 37}, - [1516] = {.lex_state = 51}, - [1517] = {.lex_state = 32}, - [1518] = {.lex_state = 32}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 30}, - [1523] = {.lex_state = 119}, - [1524] = {.lex_state = 51}, - [1525] = {.lex_state = 37}, - [1526] = {.lex_state = 32}, - [1527] = {.lex_state = 51}, - [1528] = {.lex_state = 37}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 51}, - [1531] = {.lex_state = 51}, - [1532] = {.lex_state = 0}, + [1417] = {.lex_state = 122}, + [1418] = {.lex_state = 54}, + [1419] = {.lex_state = 122}, + [1420] = {.lex_state = 51}, + [1421] = {.lex_state = 54}, + [1422] = {.lex_state = 54}, + [1423] = {.lex_state = 122}, + [1424] = {.lex_state = 122}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 122}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 52}, + [1429] = {.lex_state = 54}, + [1430] = {.lex_state = 122}, + [1431] = {.lex_state = 122}, + [1432] = {.lex_state = 122}, + [1433] = {.lex_state = 122}, + [1434] = {.lex_state = 54}, + [1435] = {.lex_state = 52}, + [1436] = {.lex_state = 54}, + [1437] = {.lex_state = 54}, + [1438] = {.lex_state = 54}, + [1439] = {.lex_state = 122}, + [1440] = {.lex_state = 54}, + [1441] = {.lex_state = 122}, + [1442] = {.lex_state = 122}, + [1443] = {.lex_state = 122}, + [1444] = {.lex_state = 122}, + [1445] = {.lex_state = 54}, + [1446] = {.lex_state = 122}, + [1447] = {.lex_state = 52}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 54}, + [1450] = {.lex_state = 122}, + [1451] = {.lex_state = 54}, + [1452] = {.lex_state = 122}, + [1453] = {.lex_state = 54}, + [1454] = {.lex_state = 54}, + [1455] = {.lex_state = 54}, + [1456] = {.lex_state = 54}, + [1457] = {.lex_state = 54}, + [1458] = {.lex_state = 54}, + [1459] = {.lex_state = 54}, + [1460] = {.lex_state = 54}, + [1461] = {.lex_state = 52}, + [1462] = {.lex_state = 54}, + [1463] = {.lex_state = 122}, + [1464] = {.lex_state = 54}, + [1465] = {.lex_state = 122}, + [1466] = {.lex_state = 122}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 122}, + [1469] = {.lex_state = 122}, + [1470] = {.lex_state = 54}, + [1471] = {.lex_state = 54}, + [1472] = {.lex_state = 58}, + [1473] = {.lex_state = 58}, + [1474] = {.lex_state = 54}, + [1475] = {.lex_state = 54}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 58}, + [1478] = {.lex_state = 58}, + [1479] = {.lex_state = 54}, + [1480] = {.lex_state = 54}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 58}, + [1483] = {.lex_state = 122}, + [1484] = {.lex_state = 54}, + [1485] = {.lex_state = 54}, + [1486] = {.lex_state = 58}, + [1487] = {.lex_state = 54}, + [1488] = {.lex_state = 58}, + [1489] = {.lex_state = 58}, + [1490] = {.lex_state = 58}, + [1491] = {.lex_state = 122}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 54}, + [1494] = {.lex_state = 122}, + [1495] = {.lex_state = 54}, + [1496] = {.lex_state = 54}, + [1497] = {.lex_state = 52}, + [1498] = {.lex_state = 122}, + [1499] = {.lex_state = 54}, + [1500] = {.lex_state = 122}, + [1501] = {.lex_state = 122}, + [1502] = {.lex_state = 122}, + [1503] = {.lex_state = 54}, + [1504] = {.lex_state = 58}, + [1505] = {.lex_state = 54}, + [1506] = {.lex_state = 52}, + [1507] = {.lex_state = 58}, + [1508] = {.lex_state = 122}, + [1509] = {.lex_state = 58}, + [1510] = {.lex_state = 54}, + [1511] = {.lex_state = 54}, + [1512] = {.lex_state = 122}, + [1513] = {.lex_state = 122}, + [1514] = {.lex_state = 54}, + [1515] = {.lex_state = 122}, + [1516] = {.lex_state = 47}, + [1517] = {.lex_state = 122}, + [1518] = {.lex_state = 54}, + [1519] = {.lex_state = 122}, + [1520] = {.lex_state = 122}, + [1521] = {.lex_state = 122}, + [1522] = {.lex_state = 52}, + [1523] = {.lex_state = 122}, + [1524] = {.lex_state = 54}, + [1525] = {.lex_state = 122}, + [1526] = {.lex_state = 122}, + [1527] = {.lex_state = 122}, + [1528] = {.lex_state = 54}, + [1529] = {.lex_state = 122}, + [1530] = {.lex_state = 122}, + [1531] = {.lex_state = 54}, + [1532] = {.lex_state = 122}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 119}, - [1535] = {.lex_state = 51}, - [1536] = {.lex_state = 51}, - [1537] = {.lex_state = 51}, - [1538] = {.lex_state = 32}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 51}, - [1541] = {.lex_state = 51}, - [1542] = {.lex_state = 51}, - [1543] = {.lex_state = 51}, - [1544] = {.lex_state = 30}, - [1545] = {.lex_state = 51}, - [1546] = {.lex_state = 49}, - [1547] = {.lex_state = 51}, - [1548] = {.lex_state = 32}, - [1549] = {.lex_state = 32}, - [1550] = {.lex_state = 51}, - [1551] = {.lex_state = 51}, - [1552] = {.lex_state = 51}, - [1553] = {.lex_state = 49}, - [1554] = {.lex_state = 49}, - [1555] = {.lex_state = 51}, - [1556] = {.lex_state = 37}, - [1557] = {.lex_state = 37}, - [1558] = {.lex_state = 37}, - [1559] = {.lex_state = 51}, - [1560] = {.lex_state = 30}, - [1561] = {.lex_state = 51}, - [1562] = {.lex_state = 49}, - [1563] = {.lex_state = 44}, - [1564] = {.lex_state = 37}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, + [1534] = {.lex_state = 54}, + [1535] = {.lex_state = 54}, + [1536] = {.lex_state = 52}, + [1537] = {.lex_state = 54}, + [1538] = {.lex_state = 30}, + [1539] = {.lex_state = 52}, + [1540] = {.lex_state = 30}, + [1541] = {.lex_state = 54}, + [1542] = {.lex_state = 54}, + [1543] = {.lex_state = 54}, + [1544] = {.lex_state = 54}, + [1545] = {.lex_state = 54}, + [1546] = {.lex_state = 54}, + [1547] = {.lex_state = 54}, + [1548] = {.lex_state = 35}, + [1549] = {.lex_state = 37}, + [1550] = {.lex_state = 54}, + [1551] = {.lex_state = 54}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 54}, + [1554] = {.lex_state = 54}, + [1555] = {.lex_state = 122}, + [1556] = {.lex_state = 54}, + [1557] = {.lex_state = 47}, + [1558] = {.lex_state = 30}, + [1559] = {.lex_state = 54}, + [1560] = {.lex_state = 54}, + [1561] = {.lex_state = 54}, + [1562] = {.lex_state = 54}, + [1563] = {.lex_state = 52}, + [1564] = {.lex_state = 122}, + [1565] = {.lex_state = 35}, + [1566] = {.lex_state = 54}, + [1567] = {.lex_state = 52}, + [1568] = {.lex_state = 30}, + [1569] = {.lex_state = 30}, + [1570] = {.lex_state = 54}, + [1571] = {.lex_state = 54}, + [1572] = {.lex_state = 54}, + [1573] = {.lex_state = 37}, + [1574] = {.lex_state = 35}, + [1575] = {.lex_state = 35}, + [1576] = {.lex_state = 54}, + [1577] = {.lex_state = 35}, [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 51}, - [1581] = {.lex_state = 44}, + [1579] = {.lex_state = 37}, + [1580] = {.lex_state = 35}, + [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 51}, - [1589] = {.lex_state = 0}, + [1584] = {.lex_state = 54}, + [1585] = {.lex_state = 54}, + [1586] = {.lex_state = 37}, + [1587] = {.lex_state = 54}, + [1588] = {.lex_state = 54}, + [1589] = {.lex_state = 54}, [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 44}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, + [1592] = {.lex_state = 54}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 30}, + [1595] = {.lex_state = 35}, + [1596] = {.lex_state = 30}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 51}, + [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, + [1601] = {.lex_state = 54}, [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 51}, - [1604] = {.lex_state = 51}, + [1603] = {.lex_state = 0}, + [1604] = {.lex_state = 0}, [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 0}, + [1607] = {.lex_state = 37}, + [1608] = {.lex_state = 32}, [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 30}, - [1612] = {.lex_state = 34}, - [1613] = {.lex_state = 51}, - [1614] = {.lex_state = 34}, - [1615] = {.lex_state = 44}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 44}, + [1617] = {.lex_state = 47}, [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, [1620] = {.lex_state = 0}, [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}, [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, + [1629] = {.lex_state = 54}, + [1630] = {.lex_state = 54}, + [1631] = {.lex_state = 37}, + [1632] = {.lex_state = 54}, [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, + [1634] = {.lex_state = 54}, + [1635] = {.lex_state = 37}, [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 51}, + [1637] = {.lex_state = 35}, + [1638] = {.lex_state = 54}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 51}, - [1642] = {.lex_state = 44}, - [1643] = {.lex_state = 44}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, + [1645] = {.lex_state = 54}, [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 51}, + [1647] = {.lex_state = 32}, + [1648] = {.lex_state = 54}, [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 30}, - [1651] = {.lex_state = 44}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 34}, - [1655] = {.lex_state = 0}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 0}, + [1652] = {.lex_state = 37}, + [1653] = {.lex_state = 47}, + [1654] = {.lex_state = 47}, + [1655] = {.lex_state = 47}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, @@ -14470,7 +14567,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1661] = {.lex_state = 0}, [1662] = {.lex_state = 0}, [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 51}, + [1664] = {.lex_state = 0}, [1665] = {.lex_state = 0}, [1666] = {.lex_state = 0}, [1667] = {.lex_state = 0}, @@ -14484,353 +14581,395 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1675] = {.lex_state = 0}, [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 51}, + [1678] = {.lex_state = 0}, [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 30}, + [1680] = {.lex_state = 0}, [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, + [1684] = {.lex_state = 47}, [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 51}, - [1687] = {.lex_state = 119}, + [1686] = {.lex_state = 0}, + [1687] = {.lex_state = 0}, [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 119}, - [1690] = {.lex_state = 119}, - [1691] = {.lex_state = 51}, - [1692] = {.lex_state = 119}, + [1689] = {.lex_state = 0}, + [1690] = {.lex_state = 0}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 47}, [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 119}, - [1695] = {.lex_state = 119}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 0}, [1696] = {.lex_state = 0}, [1697] = {.lex_state = 0}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 33}, - [1700] = {.lex_state = 119}, + [1699] = {.lex_state = 54}, + [1700] = {.lex_state = 0}, [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 33}, + [1702] = {.lex_state = 0}, [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 119}, - [1706] = {.lex_state = 119}, + [1704] = {.lex_state = 54}, + [1705] = {.lex_state = 32}, + [1706] = {.lex_state = 54}, [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 33}, - [1709] = {.lex_state = 119}, - [1710] = {.lex_state = 51}, - [1711] = {.lex_state = 33}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 32}, + [1710] = {.lex_state = 0}, + [1711] = {.lex_state = 0}, [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 119}, - [1717] = {.lex_state = 119}, - [1718] = {.lex_state = 33}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 0}, + [1718] = {.lex_state = 47}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 33}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 44}, + [1722] = {.lex_state = 54}, + [1723] = {.lex_state = 122}, + [1724] = {.lex_state = 31}, + [1725] = {.lex_state = 31}, [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 33}, - [1728] = {.lex_state = 44}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 33}, - [1731] = {.lex_state = 51}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 51}, - [1734] = {.lex_state = 119}, - [1735] = {.lex_state = 119}, - [1736] = {.lex_state = 51}, + [1727] = {.lex_state = 54}, + [1728] = {.lex_state = 0}, + [1729] = {.lex_state = 122}, + [1730] = {.lex_state = 122}, + [1731] = {.lex_state = 122}, + [1732] = {.lex_state = 31}, + [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 54}, [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 119}, - [1741] = {.lex_state = 119}, - [1742] = {.lex_state = 119}, - [1743] = {.lex_state = 33}, + [1738] = {.lex_state = 54}, + [1739] = {.lex_state = 122}, + [1740] = {.lex_state = 122}, + [1741] = {.lex_state = 122}, + [1742] = {.lex_state = 122}, + [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 119}, - [1746] = {.lex_state = 33}, - [1747] = {.lex_state = 33}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 51}, - [1750] = {.lex_state = 0}, + [1745] = {.lex_state = 122}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 0}, + [1748] = {.lex_state = 31}, + [1749] = {.lex_state = 122}, + [1750] = {.lex_state = 122}, [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 51}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 119}, - [1755] = {.lex_state = 33}, - [1756] = {.lex_state = 119}, - [1757] = {.lex_state = 33}, - [1758] = {.lex_state = 44}, - [1759] = {.lex_state = 119}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 33}, - [1762] = {.lex_state = 33}, - [1763] = {.lex_state = 33}, - [1764] = {.lex_state = 119}, + [1752] = {.lex_state = 122}, + [1753] = {.lex_state = 31}, + [1754] = {.lex_state = 122}, + [1755] = {.lex_state = 122}, + [1756] = {.lex_state = 54}, + [1757] = {.lex_state = 0}, + [1758] = {.lex_state = 122}, + [1759] = {.lex_state = 54}, + [1760] = {.lex_state = 54}, + [1761] = {.lex_state = 122}, + [1762] = {.lex_state = 122}, + [1763] = {.lex_state = 31}, + [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 51}, - [1768] = {.lex_state = 119}, - [1769] = {.lex_state = 33}, + [1766] = {.lex_state = 122}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 31}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 119}, - [1772] = {.lex_state = 119}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 122}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 43}, + [1775] = {.lex_state = 122}, + [1776] = {.lex_state = 122}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 119}, - [1779] = {.lex_state = 43}, - [1780] = {.lex_state = 43}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 34}, - [1784] = {.lex_state = 43}, - [1785] = {.lex_state = 43}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 43}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 43}, + [1778] = {.lex_state = 47}, + [1779] = {.lex_state = 54}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 122}, + [1782] = {.lex_state = 31}, + [1783] = {.lex_state = 122}, + [1784] = {.lex_state = 122}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 54}, + [1787] = {.lex_state = 31}, + [1788] = {.lex_state = 31}, + [1789] = {.lex_state = 47}, [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 43}, - [1792] = {.lex_state = 51}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 43}, - [1795] = {.lex_state = 34}, - [1796] = {.lex_state = 34}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 43}, + [1791] = {.lex_state = 0}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 31}, + [1794] = {.lex_state = 31}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 31}, + [1797] = {.lex_state = 122}, + [1798] = {.lex_state = 0}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 34}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, + [1800] = {.lex_state = 0}, + [1801] = {.lex_state = 31}, + [1802] = {.lex_state = 31}, + [1803] = {.lex_state = 31}, [1804] = {.lex_state = 0}, [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 34}, + [1807] = {.lex_state = 31}, [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 34}, - [1811] = {.lex_state = 119}, - [1812] = {.lex_state = 34}, - [1813] = {.lex_state = 119}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 34}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 51}, - [1819] = {.lex_state = 34}, + [1809] = {.lex_state = 47}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 46}, + [1812] = {.lex_state = 46}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 54}, + [1815] = {.lex_state = 32}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 46}, + [1818] = {.lex_state = 46}, + [1819] = {.lex_state = 46}, [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 0}, + [1821] = {.lex_state = 54}, [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 119}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 34}, - [1826] = {.lex_state = 119}, - [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 43}, - [1829] = {.lex_state = 43}, - [1830] = {.lex_state = 43}, - [1831] = {.lex_state = 43}, - [1832] = {.lex_state = 34}, - [1833] = {.lex_state = 34}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 34}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 51}, - [1838] = {.lex_state = 51}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 43}, - [1841] = {.lex_state = 43}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 43}, + [1823] = {.lex_state = 32}, + [1824] = {.lex_state = 46}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 46}, + [1827] = {.lex_state = 46}, + [1828] = {.lex_state = 46}, + [1829] = {.lex_state = 46}, + [1830] = {.lex_state = 0}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 0}, + [1833] = {.lex_state = 0}, + [1834] = {.lex_state = 46}, + [1835] = {.lex_state = 54}, + [1836] = {.lex_state = 46}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 32}, + [1839] = {.lex_state = 46}, + [1840] = {.lex_state = 32}, + [1841] = {.lex_state = 54}, + [1842] = {.lex_state = 46}, + [1843] = {.lex_state = 32}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 51}, - [1847] = {.lex_state = 0}, + [1846] = {.lex_state = 32}, + [1847] = {.lex_state = 54}, [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 119}, + [1849] = {.lex_state = 32}, [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 51}, + [1851] = {.lex_state = 32}, + [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 43}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 43}, - [1857] = {.lex_state = 34}, - [1858] = {.lex_state = 0}, + [1854] = {.lex_state = 46}, + [1855] = {.lex_state = 32}, + [1856] = {.lex_state = 54}, + [1857] = {.lex_state = 32}, + [1858] = {.lex_state = 46}, [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 34}, + [1860] = {.lex_state = 32}, + [1861] = {.lex_state = 54}, + [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 43}, - [1865] = {.lex_state = 43}, - [1866] = {.lex_state = 43}, - [1867] = {.lex_state = 51}, + [1864] = {.lex_state = 46}, + [1865] = {.lex_state = 54}, + [1866] = {.lex_state = 32}, + [1867] = {.lex_state = 0}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 43}, - [1870] = {.lex_state = 51}, - [1871] = {.lex_state = 119}, - [1872] = {.lex_state = 43}, - [1873] = {.lex_state = 43}, - [1874] = {.lex_state = 51}, - [1875] = {.lex_state = 34}, - [1876] = {.lex_state = 34}, - [1877] = {.lex_state = 51}, - [1878] = {.lex_state = 34}, - [1879] = {.lex_state = 51}, - [1880] = {.lex_state = 0}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 0}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 32}, + [1874] = {.lex_state = 32}, + [1875] = {.lex_state = 0}, + [1876] = {.lex_state = 32}, + [1877] = {.lex_state = 54}, + [1878] = {.lex_state = 54}, + [1879] = {.lex_state = 54}, + [1880] = {.lex_state = 46}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 51}, + [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, + [1887] = {.lex_state = 54}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 51}, - [1891] = {.lex_state = 34}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 54}, [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 51}, - [1895] = {.lex_state = 51}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 34}, + [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 43}, - [1900] = {.lex_state = 43}, - [1901] = {.lex_state = 51}, - [1902] = {.lex_state = 51}, - [1903] = {.lex_state = 43}, - [1904] = {.lex_state = 0}, + [1899] = {.lex_state = 0}, + [1900] = {.lex_state = 32}, + [1901] = {.lex_state = 54}, + [1902] = {.lex_state = 54}, + [1903] = {.lex_state = 122}, + [1904] = {.lex_state = 46}, [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 43}, - [1908] = {.lex_state = 34}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 34}, + [1906] = {.lex_state = 54}, + [1907] = {.lex_state = 32}, + [1908] = {.lex_state = 32}, + [1909] = {.lex_state = 46}, + [1910] = {.lex_state = 54}, [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 43}, - [1913] = {.lex_state = 0}, + [1912] = {.lex_state = 46}, + [1913] = {.lex_state = 54}, [1914] = {.lex_state = 0}, [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 51}, - [1917] = {.lex_state = 51}, - [1918] = {.lex_state = 51}, - [1919] = {.lex_state = 43}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, + [1916] = {.lex_state = 32}, + [1917] = {.lex_state = 32}, + [1918] = {.lex_state = 32}, + [1919] = {.lex_state = 63}, + [1920] = {.lex_state = 54}, + [1921] = {.lex_state = 54}, [1922] = {.lex_state = 0}, [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 51}, - [1927] = {.lex_state = 34}, + [1924] = {.lex_state = 46}, + [1925] = {.lex_state = 54}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 0}, [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 43}, - [1930] = {.lex_state = 51}, - [1931] = {.lex_state = 34}, - [1932] = {.lex_state = 43}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 0}, + [1931] = {.lex_state = 46}, + [1932] = {.lex_state = 46}, [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, + [1934] = {.lex_state = 32}, [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 51}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 51}, - [1939] = {.lex_state = 43}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 51}, - [1942] = {.lex_state = 34}, + [1936] = {.lex_state = 46}, + [1937] = {.lex_state = 54}, + [1938] = {.lex_state = 46}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 46}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 46}, [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 43}, + [1944] = {.lex_state = 0}, [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 43}, - [1948] = {.lex_state = 51}, - [1949] = {.lex_state = 51}, - [1950] = {.lex_state = 119}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 34}, - [1953] = {.lex_state = 43}, - [1954] = {.lex_state = 51}, + [1947] = {.lex_state = 0}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 0}, + [1950] = {.lex_state = 0}, + [1951] = {.lex_state = 32}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 0}, + [1954] = {.lex_state = 0}, [1955] = {.lex_state = 0}, [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 43}, - [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 51}, - [1962] = {.lex_state = 43}, - [1963] = {.lex_state = 0}, + [1958] = {.lex_state = 54}, + [1959] = {.lex_state = 54}, + [1960] = {.lex_state = 311}, + [1961] = {.lex_state = 32}, + [1962] = {.lex_state = 32}, + [1963] = {.lex_state = 46}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 51}, - [1966] = {.lex_state = 43}, - [1967] = {.lex_state = 51}, + [1965] = {.lex_state = 46}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 54}, [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 51}, - [1970] = {.lex_state = 51}, - [1971] = {.lex_state = 119}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 51}, - [1974] = {.lex_state = 51}, - [1975] = {.lex_state = 34}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 43}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 119}, - [1981] = {.lex_state = 43}, - [1982] = {.lex_state = 43}, - [1983] = {.lex_state = 43}, - [1984] = {.lex_state = 43}, + [1969] = {.lex_state = 0}, + [1970] = {.lex_state = 46}, + [1971] = {.lex_state = 46}, + [1972] = {.lex_state = 46}, + [1973] = {.lex_state = 0}, + [1974] = {.lex_state = 46}, + [1975] = {.lex_state = 0}, + [1976] = {.lex_state = 46}, + [1977] = {.lex_state = 46}, + [1978] = {.lex_state = 46}, + [1979] = {.lex_state = 54}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 0}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 122}, + [1984] = {.lex_state = 54}, [1985] = {.lex_state = 0}, [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 43}, - [1988] = {.lex_state = 43}, - [1989] = {.lex_state = 51}, - [1990] = {.lex_state = 119}, - [1991] = {.lex_state = 51}, - [1992] = {.lex_state = 43}, - [1993] = {.lex_state = 43}, - [1994] = {.lex_state = 51}, - [1995] = {.lex_state = 51}, + [1987] = {.lex_state = 0}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 54}, + [1990] = {.lex_state = 54}, + [1991] = {.lex_state = 46}, + [1992] = {.lex_state = 54}, + [1993] = {.lex_state = 46}, + [1994] = {.lex_state = 32}, + [1995] = {.lex_state = 54}, [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 119}, + [1997] = {.lex_state = 32}, + [1998] = {.lex_state = 46}, + [1999] = {.lex_state = 46}, [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 51}, + [2001] = {.lex_state = 46}, + [2002] = {.lex_state = 46}, [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 34}, - [2005] = {.lex_state = 34}, - [2006] = {.lex_state = 0}, + [2004] = {.lex_state = 0}, + [2005] = {.lex_state = 46}, + [2006] = {.lex_state = 54}, [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 43}, - [2009] = {.lex_state = 34}, - [2010] = {.lex_state = 51}, - [2011] = {.lex_state = 43}, + [2008] = {.lex_state = 122}, + [2009] = {.lex_state = 46}, + [2010] = {.lex_state = 54}, + [2011] = {.lex_state = 46}, [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 34}, - [2014] = {.lex_state = 51}, - [2015] = {.lex_state = 119}, + [2013] = {.lex_state = 0}, + [2014] = {.lex_state = 54}, + [2015] = {.lex_state = 54}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 119}, - [2019] = {.lex_state = 43}, - [2020] = {.lex_state = 51}, + [2017] = {.lex_state = 32}, + [2018] = {.lex_state = 54}, + [2019] = {.lex_state = 46}, + [2020] = {.lex_state = 46}, + [2021] = {.lex_state = 122}, + [2022] = {.lex_state = 0}, + [2023] = {.lex_state = 0}, + [2024] = {.lex_state = 32}, + [2025] = {.lex_state = 0}, + [2026] = {.lex_state = 0}, + [2027] = {.lex_state = 32}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 0}, + [2030] = {.lex_state = 54}, + [2031] = {.lex_state = 46}, + [2032] = {.lex_state = 0}, + [2033] = {.lex_state = 46}, + [2034] = {.lex_state = 122}, + [2035] = {.lex_state = 122}, + [2036] = {.lex_state = 122}, + [2037] = {.lex_state = 0}, + [2038] = {.lex_state = 54}, + [2039] = {.lex_state = 0}, + [2040] = {.lex_state = 122}, + [2041] = {.lex_state = 0}, + [2042] = {.lex_state = 122}, + [2043] = {.lex_state = 54}, + [2044] = {.lex_state = 0}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 122}, + [2048] = {.lex_state = 32}, + [2049] = {.lex_state = 46}, + [2050] = {.lex_state = 46}, + [2051] = {.lex_state = 54}, + [2052] = {.lex_state = 122}, + [2053] = {.lex_state = 54}, + [2054] = {.lex_state = 122}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 122}, + [2057] = {.lex_state = 54}, + [2058] = {.lex_state = 54}, + [2059] = {.lex_state = 122}, + [2060] = {(TSStateId)(-1)}, + [2061] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { + [sym_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [aux_sym_preproc_include_token1] = ACTIONS(1), @@ -14976,8071 +15115,8330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1), [anon_sym_NULL] = ACTIONS(1), [anon_sym_nullptr] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [1] = { - [sym_translation_unit] = STATE(1836), - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(415), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1129), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(747), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(866), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym__top_level_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(1115), - [sym__string] = STATE(1115), - [sym_conditional_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(700), - [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(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(1115), - [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(1115), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [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(41), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_translation_unit] = STATE(2028), + [sym_preproc_include] = STATE(429), + [sym_preproc_def] = STATE(429), + [sym_preproc_function_def] = STATE(429), + [sym_preproc_call] = STATE(429), + [sym_preproc_if] = STATE(429), + [sym_preproc_ifdef] = STATE(429), + [sym_function_definition] = STATE(429), + [sym__old_style_function_definition] = STATE(433), + [sym_declaration] = STATE(429), + [sym_type_definition] = STATE(429), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1161), + [sym_linkage_specification] = STATE(429), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(756), + [sym_compound_statement] = STATE(429), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(884), + [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(429), + [sym_labeled_statement] = STATE(429), + [sym__top_level_expression_statement] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_case_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_goto_statement] = STATE(429), + [sym__expression] = STATE(1141), + [sym__expression_not_binary] = STATE(1143), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(429), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(1), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [aux_sym_preproc_include_token1] = ACTIONS(11), + [aux_sym_preproc_def_token1] = ACTIONS(13), + [aux_sym_preproc_if_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [sym_preproc_directive] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [2] = { - [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_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1818), + [sym_preproc_elif] = STATE(1818), + [sym_preproc_elifdef] = STATE(1818), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(2), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [3] = { - [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_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1965), + [sym_preproc_elif] = STATE(1965), + [sym_preproc_elifdef] = STATE(1965), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(3), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(159), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1959), - [sym_preproc_elif] = STATE(1959), - [sym_preproc_elifdef] = STATE(1959), - [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1827), + [sym_preproc_elif] = STATE(1827), + [sym_preproc_elifdef] = STATE(1827), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(4), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(161), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(2020), + [sym_preproc_elif] = STATE(2020), + [sym_preproc_elifdef] = STATE(2020), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(5), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1828), + [sym_preproc_elif] = STATE(1828), + [sym_preproc_elifdef] = STATE(1828), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(6), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [7] = { + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1963), + [sym_preproc_elif] = STATE(1963), + [sym_preproc_elifdef] = STATE(1963), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(7), [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(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), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, - [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(1872), - [sym_preproc_elif] = STATE(1872), - [sym_preproc_elifdef] = STATE(1872), - [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [8] = { + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(2049), + [sym_preproc_elif] = STATE(2049), + [sym_preproc_elifdef] = STATE(2049), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(8), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(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), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, - [8] = { - [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_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym_seh_try_statement] = STATE(16), - [sym_seh_leave_statement] = STATE(16), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [9] = { + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1912), + [sym_preproc_elif] = STATE(1912), + [sym_preproc_elifdef] = STATE(1912), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(9), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(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), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, - [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [10] = { + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1904), + [sym_preproc_elif] = STATE(1904), + [sym_preproc_elifdef] = STATE(1904), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(10), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(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), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, - [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [11] = { + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1854), + [sym_preproc_elif] = STATE(1854), + [sym_preproc_elifdef] = STATE(1854), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(11), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(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), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, - [11] = { - [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_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [12] = { + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(2050), + [sym_preproc_elif] = STATE(2050), + [sym_preproc_elifdef] = STATE(2050), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(12), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(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), - }, - [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [13] = { - [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_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(2031), + [sym_preproc_elif] = STATE(2031), + [sym_preproc_elifdef] = STATE(2031), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(13), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1864), + [sym_preproc_elif] = STATE(1864), + [sym_preproc_elifdef] = STATE(1864), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(14), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [15] = { - [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_function_definition] = STATE(19), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym_seh_try_statement] = STATE(19), - [sym_seh_leave_statement] = STATE(19), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1836), + [sym_preproc_elif] = STATE(1836), + [sym_preproc_elifdef] = STATE(1836), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(15), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1854), - [sym_preproc_elif] = STATE(1854), - [sym_preproc_elifdef] = STATE(1854), - [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1834), + [sym_preproc_elif] = STATE(1834), + [sym_preproc_elifdef] = STATE(1834), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(16), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [17] = { - [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_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1909), + [sym_preproc_elif] = STATE(1909), + [sym_preproc_elifdef] = STATE(1909), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(17), + [aux_sym_preproc_if_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1936), + [sym_preproc_elif] = STATE(1936), + [sym_preproc_elifdef] = STATE(1936), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(18), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1841), - [sym_preproc_elif] = STATE(1841), - [sym_preproc_elifdef] = STATE(1841), - [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1924), + [sym_preproc_elif] = STATE(1924), + [sym_preproc_elifdef] = STATE(1924), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(19), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1826), + [sym_preproc_elif] = STATE(1826), + [sym_preproc_elifdef] = STATE(1826), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(20), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [sym_comment] = ACTIONS(3), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_preproc_else] = STATE(1824), + [sym_preproc_elif] = STATE(1824), + [sym_preproc_elifdef] = STATE(1824), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(21), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [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(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [22] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_include] = STATE(144), + [sym_preproc_def] = STATE(144), + [sym_preproc_function_def] = STATE(144), + [sym_preproc_call] = STATE(144), + [sym_preproc_if] = STATE(144), + [sym_preproc_ifdef] = STATE(144), + [sym_function_definition] = STATE(144), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1160), + [sym_linkage_specification] = STATE(144), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(759), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(885), + [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(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(144), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(22), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [sym_comment] = ACTIONS(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(197), + [aux_sym_preproc_include_token1] = ACTIONS(200), + [aux_sym_preproc_def_token1] = ACTIONS(203), + [aux_sym_preproc_if_token1] = ACTIONS(206), + [aux_sym_preproc_if_token2] = ACTIONS(209), + [aux_sym_preproc_ifdef_token1] = ACTIONS(211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(211), + [aux_sym_preproc_else_token1] = ACTIONS(209), + [aux_sym_preproc_elif_token1] = ACTIONS(209), + [aux_sym_preproc_elifdef_token1] = ACTIONS(209), + [aux_sym_preproc_elifdef_token2] = ACTIONS(209), + [sym_preproc_directive] = ACTIONS(214), + [anon_sym_LPAREN2] = ACTIONS(217), + [anon_sym_BANG] = ACTIONS(220), + [anon_sym_TILDE] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_SEMI] = ACTIONS(229), + [anon_sym___extension__] = ACTIONS(232), + [anon_sym_typedef] = ACTIONS(235), + [anon_sym_extern] = ACTIONS(238), + [anon_sym___attribute__] = ACTIONS(241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(244), + [anon_sym___declspec] = ACTIONS(247), + [anon_sym___cdecl] = ACTIONS(250), + [anon_sym___clrcall] = ACTIONS(250), + [anon_sym___stdcall] = ACTIONS(250), + [anon_sym___fastcall] = ACTIONS(250), + [anon_sym___thiscall] = ACTIONS(250), + [anon_sym___vectorcall] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_signed] = ACTIONS(256), + [anon_sym_unsigned] = ACTIONS(256), + [anon_sym_long] = ACTIONS(256), + [anon_sym_short] = ACTIONS(256), + [anon_sym_static] = ACTIONS(259), + [anon_sym_auto] = ACTIONS(259), + [anon_sym_register] = ACTIONS(259), + [anon_sym_inline] = ACTIONS(259), + [anon_sym___inline] = ACTIONS(259), + [anon_sym___inline__] = ACTIONS(259), + [anon_sym___forceinline] = ACTIONS(259), + [anon_sym_thread_local] = ACTIONS(259), + [anon_sym___thread] = ACTIONS(259), + [anon_sym_const] = ACTIONS(262), + [anon_sym_constexpr] = ACTIONS(262), + [anon_sym_volatile] = ACTIONS(262), + [anon_sym_restrict] = ACTIONS(262), + [anon_sym___restrict__] = ACTIONS(262), + [anon_sym__Atomic] = ACTIONS(262), + [anon_sym__Noreturn] = ACTIONS(262), + [anon_sym_noreturn] = ACTIONS(262), + [sym_primitive_type] = ACTIONS(265), + [anon_sym_enum] = ACTIONS(268), + [anon_sym_struct] = ACTIONS(271), + [anon_sym_union] = ACTIONS(274), + [anon_sym_if] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(280), + [anon_sym_case] = ACTIONS(283), + [anon_sym_default] = ACTIONS(286), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(292), + [anon_sym_for] = ACTIONS(295), + [anon_sym_return] = ACTIONS(298), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(304), + [anon_sym_goto] = ACTIONS(307), + [anon_sym___try] = ACTIONS(310), + [anon_sym___leave] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(316), + [anon_sym_PLUS_PLUS] = ACTIONS(316), + [anon_sym_sizeof] = ACTIONS(319), + [anon_sym___alignof__] = ACTIONS(322), + [anon_sym___alignof] = ACTIONS(322), + [anon_sym__alignof] = ACTIONS(322), + [anon_sym_alignof] = ACTIONS(322), + [anon_sym__Alignof] = ACTIONS(322), + [anon_sym_offsetof] = ACTIONS(325), + [anon_sym__Generic] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(331), + [anon_sym___asm__] = ACTIONS(331), + [sym_number_literal] = ACTIONS(334), + [anon_sym_L_SQUOTE] = ACTIONS(337), + [anon_sym_u_SQUOTE] = ACTIONS(337), + [anon_sym_U_SQUOTE] = ACTIONS(337), + [anon_sym_u8_SQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(337), + [anon_sym_L_DQUOTE] = ACTIONS(340), + [anon_sym_u_DQUOTE] = ACTIONS(340), + [anon_sym_U_DQUOTE] = ACTIONS(340), + [anon_sym_u8_DQUOTE] = ACTIONS(340), + [anon_sym_DQUOTE] = ACTIONS(340), + [sym_true] = ACTIONS(343), + [sym_false] = ACTIONS(343), + [anon_sym_NULL] = ACTIONS(346), + [anon_sym_nullptr] = ACTIONS(346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(373), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(23), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [24] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(337), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1135), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(744), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(421), - [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(423), - [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(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_comment] = ACTIONS(3), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(24), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1135), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(744), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_include] = STATE(382), + [sym_preproc_def] = STATE(382), + [sym_preproc_function_def] = STATE(382), + [sym_preproc_call] = STATE(382), + [sym_preproc_if] = STATE(382), + [sym_preproc_ifdef] = STATE(382), + [sym_function_definition] = STATE(382), + [sym__old_style_function_definition] = STATE(383), + [sym_declaration] = STATE(382), + [sym_type_definition] = STATE(382), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1167), + [sym_linkage_specification] = STATE(382), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(757), + [sym_compound_statement] = STATE(382), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(886), + [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(382), + [sym_labeled_statement] = STATE(382), + [sym_expression_statement] = STATE(382), + [sym_if_statement] = STATE(382), + [sym_switch_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_seh_try_statement] = STATE(382), + [sym_seh_leave_statement] = STATE(382), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(382), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(25), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(401), + [aux_sym_preproc_include_token1] = ACTIONS(404), + [aux_sym_preproc_def_token1] = ACTIONS(407), + [aux_sym_preproc_if_token1] = ACTIONS(410), + [aux_sym_preproc_if_token2] = ACTIONS(209), + [aux_sym_preproc_ifdef_token1] = ACTIONS(413), + [aux_sym_preproc_ifdef_token2] = ACTIONS(413), + [sym_preproc_directive] = ACTIONS(416), + [anon_sym_LPAREN2] = ACTIONS(217), + [anon_sym_BANG] = ACTIONS(220), + [anon_sym_TILDE] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym___extension__] = ACTIONS(422), + [anon_sym_typedef] = ACTIONS(425), + [anon_sym_extern] = ACTIONS(428), + [anon_sym___attribute__] = ACTIONS(241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(244), + [anon_sym___declspec] = ACTIONS(247), + [anon_sym___cdecl] = ACTIONS(250), + [anon_sym___clrcall] = ACTIONS(250), + [anon_sym___stdcall] = ACTIONS(250), + [anon_sym___fastcall] = ACTIONS(250), + [anon_sym___thiscall] = ACTIONS(250), + [anon_sym___vectorcall] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_signed] = ACTIONS(256), + [anon_sym_unsigned] = ACTIONS(256), + [anon_sym_long] = ACTIONS(256), + [anon_sym_short] = ACTIONS(256), + [anon_sym_static] = ACTIONS(259), + [anon_sym_auto] = ACTIONS(259), + [anon_sym_register] = ACTIONS(259), + [anon_sym_inline] = ACTIONS(259), + [anon_sym___inline] = ACTIONS(259), + [anon_sym___inline__] = ACTIONS(259), + [anon_sym___forceinline] = ACTIONS(259), + [anon_sym_thread_local] = ACTIONS(259), + [anon_sym___thread] = ACTIONS(259), + [anon_sym_const] = ACTIONS(262), + [anon_sym_constexpr] = ACTIONS(262), + [anon_sym_volatile] = ACTIONS(262), + [anon_sym_restrict] = ACTIONS(262), + [anon_sym___restrict__] = ACTIONS(262), + [anon_sym__Atomic] = ACTIONS(262), + [anon_sym__Noreturn] = ACTIONS(262), + [anon_sym_noreturn] = ACTIONS(262), + [sym_primitive_type] = ACTIONS(265), + [anon_sym_enum] = ACTIONS(268), + [anon_sym_struct] = ACTIONS(271), + [anon_sym_union] = ACTIONS(274), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(437), + [anon_sym_case] = ACTIONS(440), + [anon_sym_default] = ACTIONS(443), + [anon_sym_while] = ACTIONS(446), + [anon_sym_do] = ACTIONS(449), + [anon_sym_for] = ACTIONS(452), + [anon_sym_return] = ACTIONS(455), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_goto] = ACTIONS(464), + [anon_sym___try] = ACTIONS(467), + [anon_sym___leave] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(316), + [anon_sym_PLUS_PLUS] = ACTIONS(316), + [anon_sym_sizeof] = ACTIONS(319), + [anon_sym___alignof__] = ACTIONS(322), + [anon_sym___alignof] = ACTIONS(322), + [anon_sym__alignof] = ACTIONS(322), + [anon_sym_alignof] = ACTIONS(322), + [anon_sym__Alignof] = ACTIONS(322), + [anon_sym_offsetof] = ACTIONS(325), + [anon_sym__Generic] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(331), + [anon_sym___asm__] = ACTIONS(331), + [sym_number_literal] = ACTIONS(334), + [anon_sym_L_SQUOTE] = ACTIONS(337), + [anon_sym_u_SQUOTE] = ACTIONS(337), + [anon_sym_U_SQUOTE] = ACTIONS(337), + [anon_sym_u8_SQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(337), + [anon_sym_L_DQUOTE] = ACTIONS(340), + [anon_sym_u_DQUOTE] = ACTIONS(340), + [anon_sym_U_DQUOTE] = ACTIONS(340), + [anon_sym_u8_DQUOTE] = ACTIONS(340), + [anon_sym_DQUOTE] = ACTIONS(340), + [sym_true] = ACTIONS(343), + [sym_false] = ACTIONS(343), + [anon_sym_NULL] = ACTIONS(346), + [anon_sym_nullptr] = ACTIONS(346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(523), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(26), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1135), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(744), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(421), - [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(423), - [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(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_comment] = ACTIONS(3), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(27), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(527), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(28), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(529), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(29), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(531), - [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(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), + [sym_preproc_include] = STATE(382), + [sym_preproc_def] = STATE(382), + [sym_preproc_function_def] = STATE(382), + [sym_preproc_call] = STATE(382), + [sym_preproc_if] = STATE(382), + [sym_preproc_ifdef] = STATE(382), + [sym_function_definition] = STATE(382), + [sym__old_style_function_definition] = STATE(383), + [sym_declaration] = STATE(382), + [sym_type_definition] = STATE(382), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1167), + [sym_linkage_specification] = STATE(382), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(757), + [sym_compound_statement] = STATE(382), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(886), + [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(382), + [sym_labeled_statement] = STATE(382), + [sym_expression_statement] = STATE(382), + [sym_if_statement] = STATE(382), + [sym_switch_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_seh_try_statement] = STATE(382), + [sym_seh_leave_statement] = STATE(382), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(382), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(30), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(481), + [aux_sym_preproc_include_token1] = ACTIONS(483), + [aux_sym_preproc_def_token1] = ACTIONS(485), + [aux_sym_preproc_if_token1] = ACTIONS(487), + [aux_sym_preproc_if_token2] = ACTIONS(489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(491), + [sym_preproc_directive] = ACTIONS(493), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(501), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(533), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(31), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(535), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(32), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [33] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym_seh_try_statement] = STATE(29), - [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(537), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(33), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(539), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(34), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(541), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(35), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(539), + [aux_sym_preproc_include_token1] = ACTIONS(542), + [aux_sym_preproc_def_token1] = ACTIONS(545), + [aux_sym_preproc_if_token1] = ACTIONS(548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(551), + [sym_preproc_directive] = ACTIONS(554), + [anon_sym_LPAREN2] = ACTIONS(217), + [anon_sym_BANG] = ACTIONS(220), + [anon_sym_TILDE] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(566), + [anon_sym___attribute__] = ACTIONS(241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(244), + [anon_sym___declspec] = ACTIONS(247), + [anon_sym___cdecl] = ACTIONS(250), + [anon_sym___clrcall] = ACTIONS(250), + [anon_sym___stdcall] = ACTIONS(250), + [anon_sym___fastcall] = ACTIONS(250), + [anon_sym___thiscall] = ACTIONS(250), + [anon_sym___vectorcall] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_signed] = ACTIONS(256), + [anon_sym_unsigned] = ACTIONS(256), + [anon_sym_long] = ACTIONS(256), + [anon_sym_short] = ACTIONS(256), + [anon_sym_static] = ACTIONS(259), + [anon_sym_auto] = ACTIONS(259), + [anon_sym_register] = ACTIONS(259), + [anon_sym_inline] = ACTIONS(259), + [anon_sym___inline] = ACTIONS(259), + [anon_sym___inline__] = ACTIONS(259), + [anon_sym___forceinline] = ACTIONS(259), + [anon_sym_thread_local] = ACTIONS(259), + [anon_sym___thread] = ACTIONS(259), + [anon_sym_const] = ACTIONS(262), + [anon_sym_constexpr] = ACTIONS(262), + [anon_sym_volatile] = ACTIONS(262), + [anon_sym_restrict] = ACTIONS(262), + [anon_sym___restrict__] = ACTIONS(262), + [anon_sym__Atomic] = ACTIONS(262), + [anon_sym__Noreturn] = ACTIONS(262), + [anon_sym_noreturn] = ACTIONS(262), + [sym_primitive_type] = ACTIONS(265), + [anon_sym_enum] = ACTIONS(268), + [anon_sym_struct] = ACTIONS(271), + [anon_sym_union] = ACTIONS(274), + [anon_sym_if] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_case] = ACTIONS(580), + [anon_sym_default] = ACTIONS(583), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(589), + [anon_sym_for] = ACTIONS(592), + [anon_sym_return] = ACTIONS(595), + [anon_sym_break] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(607), + [anon_sym___leave] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(316), + [anon_sym_PLUS_PLUS] = ACTIONS(316), + [anon_sym_sizeof] = ACTIONS(319), + [anon_sym___alignof__] = ACTIONS(322), + [anon_sym___alignof] = ACTIONS(322), + [anon_sym__alignof] = ACTIONS(322), + [anon_sym_alignof] = ACTIONS(322), + [anon_sym__Alignof] = ACTIONS(322), + [anon_sym_offsetof] = ACTIONS(325), + [anon_sym__Generic] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(331), + [anon_sym___asm__] = ACTIONS(331), + [sym_number_literal] = ACTIONS(334), + [anon_sym_L_SQUOTE] = ACTIONS(337), + [anon_sym_u_SQUOTE] = ACTIONS(337), + [anon_sym_U_SQUOTE] = ACTIONS(337), + [anon_sym_u8_SQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(337), + [anon_sym_L_DQUOTE] = ACTIONS(340), + [anon_sym_u_DQUOTE] = ACTIONS(340), + [anon_sym_U_DQUOTE] = ACTIONS(340), + [anon_sym_u8_DQUOTE] = ACTIONS(340), + [anon_sym_DQUOTE] = ACTIONS(340), + [sym_true] = ACTIONS(343), + [sym_false] = ACTIONS(343), + [anon_sym_NULL] = ACTIONS(346), + [anon_sym_nullptr] = ACTIONS(346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(543), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(36), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(545), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(37), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(547), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(38), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [sym_comment] = ACTIONS(3), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(39), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(623), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(40), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(625), - [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(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), + [sym_preproc_include] = STATE(382), + [sym_preproc_def] = STATE(382), + [sym_preproc_function_def] = STATE(382), + [sym_preproc_call] = STATE(382), + [sym_preproc_if] = STATE(382), + [sym_preproc_ifdef] = STATE(382), + [sym_function_definition] = STATE(382), + [sym__old_style_function_definition] = STATE(383), + [sym_declaration] = STATE(382), + [sym_type_definition] = STATE(382), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1167), + [sym_linkage_specification] = STATE(382), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(757), + [sym_compound_statement] = STATE(382), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(886), + [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(382), + [sym_labeled_statement] = STATE(382), + [sym_expression_statement] = STATE(382), + [sym_if_statement] = STATE(382), + [sym_switch_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_seh_try_statement] = STATE(382), + [sym_seh_leave_statement] = STATE(382), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(382), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(41), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(481), + [aux_sym_preproc_include_token1] = ACTIONS(483), + [aux_sym_preproc_def_token1] = ACTIONS(485), + [aux_sym_preproc_if_token1] = ACTIONS(487), + [aux_sym_preproc_if_token2] = ACTIONS(623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(491), + [sym_preproc_directive] = ACTIONS(493), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(501), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), - [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(371), - [anon_sym_RBRACE] = ACTIONS(627), - [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(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), + [sym_preproc_include] = STATE(352), + [sym_preproc_def] = STATE(352), + [sym_preproc_function_def] = STATE(352), + [sym_preproc_call] = STATE(352), + [sym_preproc_if] = STATE(352), + [sym_preproc_ifdef] = STATE(352), + [sym_function_definition] = STATE(352), + [sym__old_style_function_definition] = STATE(330), + [sym_declaration] = STATE(352), + [sym_type_definition] = STATE(352), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1157), + [sym_linkage_specification] = STATE(352), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(753), + [sym_compound_statement] = STATE(352), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(883), + [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(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(352), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(42), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(357), + [sym_preproc_directive] = ACTIONS(359), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [43] = { - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(415), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1129), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(747), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(866), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym__top_level_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(1115), - [sym__string] = STATE(1115), - [sym_conditional_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(700), - [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(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(1115), - [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(1115), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [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(41), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_preproc_include] = STATE(429), + [sym_preproc_def] = STATE(429), + [sym_preproc_function_def] = STATE(429), + [sym_preproc_call] = STATE(429), + [sym_preproc_if] = STATE(429), + [sym_preproc_ifdef] = STATE(429), + [sym_function_definition] = STATE(429), + [sym__old_style_function_definition] = STATE(433), + [sym_declaration] = STATE(429), + [sym_type_definition] = STATE(429), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1161), + [sym_linkage_specification] = STATE(429), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(756), + [sym_compound_statement] = STATE(429), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(884), + [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(429), + [sym_labeled_statement] = STATE(429), + [sym__top_level_expression_statement] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_case_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_goto_statement] = STATE(429), + [sym__expression] = STATE(1141), + [sym__expression_not_binary] = STATE(1143), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(429), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(43), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(627), + [sym_identifier] = ACTIONS(629), + [aux_sym_preproc_include_token1] = ACTIONS(632), + [aux_sym_preproc_def_token1] = ACTIONS(635), + [aux_sym_preproc_if_token1] = ACTIONS(638), + [aux_sym_preproc_ifdef_token1] = ACTIONS(641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(641), + [sym_preproc_directive] = ACTIONS(644), + [anon_sym_LPAREN2] = ACTIONS(647), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym___extension__] = ACTIONS(659), + [anon_sym_typedef] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(665), + [anon_sym___attribute__] = ACTIONS(668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(671), + [anon_sym___declspec] = ACTIONS(674), + [anon_sym___cdecl] = ACTIONS(677), + [anon_sym___clrcall] = ACTIONS(677), + [anon_sym___stdcall] = ACTIONS(677), + [anon_sym___fastcall] = ACTIONS(677), + [anon_sym___thiscall] = ACTIONS(677), + [anon_sym___vectorcall] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_signed] = ACTIONS(683), + [anon_sym_unsigned] = ACTIONS(683), + [anon_sym_long] = ACTIONS(683), + [anon_sym_short] = ACTIONS(683), + [anon_sym_static] = ACTIONS(686), + [anon_sym_auto] = ACTIONS(686), + [anon_sym_register] = ACTIONS(686), + [anon_sym_inline] = ACTIONS(686), + [anon_sym___inline] = ACTIONS(686), + [anon_sym___inline__] = ACTIONS(686), + [anon_sym___forceinline] = ACTIONS(686), + [anon_sym_thread_local] = ACTIONS(686), + [anon_sym___thread] = ACTIONS(686), + [anon_sym_const] = ACTIONS(689), + [anon_sym_constexpr] = ACTIONS(689), + [anon_sym_volatile] = ACTIONS(689), + [anon_sym_restrict] = ACTIONS(689), + [anon_sym___restrict__] = ACTIONS(689), + [anon_sym__Atomic] = ACTIONS(689), + [anon_sym__Noreturn] = ACTIONS(689), + [anon_sym_noreturn] = ACTIONS(689), + [sym_primitive_type] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_union] = ACTIONS(701), + [anon_sym_if] = ACTIONS(704), + [anon_sym_switch] = ACTIONS(707), + [anon_sym_case] = ACTIONS(710), + [anon_sym_default] = ACTIONS(713), + [anon_sym_while] = ACTIONS(716), + [anon_sym_do] = ACTIONS(719), + [anon_sym_for] = ACTIONS(722), + [anon_sym_return] = ACTIONS(725), + [anon_sym_break] = ACTIONS(728), + [anon_sym_continue] = ACTIONS(731), + [anon_sym_goto] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(737), + [anon_sym_sizeof] = ACTIONS(740), + [anon_sym___alignof__] = ACTIONS(743), + [anon_sym___alignof] = ACTIONS(743), + [anon_sym__alignof] = ACTIONS(743), + [anon_sym_alignof] = ACTIONS(743), + [anon_sym__Alignof] = ACTIONS(743), + [anon_sym_offsetof] = ACTIONS(746), + [anon_sym__Generic] = ACTIONS(749), + [anon_sym_asm] = ACTIONS(752), + [anon_sym___asm__] = ACTIONS(752), + [sym_number_literal] = ACTIONS(755), + [anon_sym_L_SQUOTE] = ACTIONS(758), + [anon_sym_u_SQUOTE] = ACTIONS(758), + [anon_sym_U_SQUOTE] = ACTIONS(758), + [anon_sym_u8_SQUOTE] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_L_DQUOTE] = ACTIONS(761), + [anon_sym_u_DQUOTE] = ACTIONS(761), + [anon_sym_U_DQUOTE] = ACTIONS(761), + [anon_sym_u8_DQUOTE] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [anon_sym_NULL] = ACTIONS(767), + [anon_sym_nullptr] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [44] = { - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(415), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1129), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(747), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(866), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym__top_level_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(1115), - [sym__string] = STATE(1115), - [sym_conditional_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(700), - [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(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(1115), - [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(1115), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [sym_comment] = ACTIONS(3), + [sym_preproc_include] = STATE(429), + [sym_preproc_def] = STATE(429), + [sym_preproc_function_def] = STATE(429), + [sym_preproc_call] = STATE(429), + [sym_preproc_if] = STATE(429), + [sym_preproc_ifdef] = STATE(429), + [sym_function_definition] = STATE(429), + [sym__old_style_function_definition] = STATE(433), + [sym_declaration] = STATE(429), + [sym_type_definition] = STATE(429), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1161), + [sym_linkage_specification] = STATE(429), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(756), + [sym_compound_statement] = STATE(429), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(884), + [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(429), + [sym_labeled_statement] = STATE(429), + [sym__top_level_expression_statement] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_case_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_goto_statement] = STATE(429), + [sym__expression] = STATE(1141), + [sym__expression_not_binary] = STATE(1143), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym__empty_declaration] = STATE(429), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(44), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(770), + [sym_identifier] = ACTIONS(9), + [aux_sym_preproc_include_token1] = ACTIONS(11), + [aux_sym_preproc_def_token1] = ACTIONS(13), + [aux_sym_preproc_if_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [sym_preproc_directive] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [45] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1179), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(772), + [aux_sym_preproc_include_token1] = ACTIONS(775), + [aux_sym_preproc_def_token1] = ACTIONS(775), + [aux_sym_preproc_if_token1] = ACTIONS(775), + [aux_sym_preproc_if_token2] = ACTIONS(775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(775), + [aux_sym_preproc_else_token1] = ACTIONS(775), + [aux_sym_preproc_elif_token1] = ACTIONS(775), + [aux_sym_preproc_elifdef_token1] = ACTIONS(775), + [aux_sym_preproc_elifdef_token2] = ACTIONS(775), + [sym_preproc_directive] = ACTIONS(775), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym___extension__] = ACTIONS(792), + [anon_sym_typedef] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(798), + [anon_sym___attribute__] = ACTIONS(801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(804), + [anon_sym___declspec] = ACTIONS(807), + [anon_sym___cdecl] = ACTIONS(775), + [anon_sym___clrcall] = ACTIONS(775), + [anon_sym___stdcall] = ACTIONS(775), + [anon_sym___fastcall] = ACTIONS(775), + [anon_sym___thiscall] = ACTIONS(775), + [anon_sym___vectorcall] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_signed] = ACTIONS(813), + [anon_sym_unsigned] = ACTIONS(813), + [anon_sym_long] = ACTIONS(813), + [anon_sym_short] = ACTIONS(813), + [anon_sym_static] = ACTIONS(798), + [anon_sym_auto] = ACTIONS(798), + [anon_sym_register] = ACTIONS(798), + [anon_sym_inline] = ACTIONS(798), + [anon_sym___inline] = ACTIONS(798), + [anon_sym___inline__] = ACTIONS(798), + [anon_sym___forceinline] = ACTIONS(798), + [anon_sym_thread_local] = ACTIONS(798), + [anon_sym___thread] = ACTIONS(798), + [anon_sym_const] = ACTIONS(816), + [anon_sym_constexpr] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [anon_sym___restrict__] = ACTIONS(816), + [anon_sym__Atomic] = ACTIONS(816), + [anon_sym__Noreturn] = ACTIONS(816), + [anon_sym_noreturn] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(819), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(825), + [anon_sym_union] = ACTIONS(828), + [anon_sym_if] = ACTIONS(831), + [anon_sym_else] = ACTIONS(775), + [anon_sym_switch] = ACTIONS(834), + [anon_sym_case] = ACTIONS(775), + [anon_sym_default] = ACTIONS(775), + [anon_sym_while] = ACTIONS(837), + [anon_sym_do] = ACTIONS(840), + [anon_sym_for] = ACTIONS(843), + [anon_sym_return] = ACTIONS(846), + [anon_sym_break] = ACTIONS(849), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_goto] = ACTIONS(855), + [anon_sym___try] = ACTIONS(858), + [anon_sym___leave] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_sizeof] = ACTIONS(867), + [anon_sym___alignof__] = ACTIONS(870), + [anon_sym___alignof] = ACTIONS(870), + [anon_sym__alignof] = ACTIONS(870), + [anon_sym_alignof] = ACTIONS(870), + [anon_sym__Alignof] = ACTIONS(870), + [anon_sym_offsetof] = ACTIONS(873), + [anon_sym__Generic] = ACTIONS(876), + [anon_sym_asm] = ACTIONS(879), + [anon_sym___asm__] = ACTIONS(879), + [sym_number_literal] = ACTIONS(882), + [anon_sym_L_SQUOTE] = ACTIONS(885), + [anon_sym_u_SQUOTE] = ACTIONS(885), + [anon_sym_U_SQUOTE] = ACTIONS(885), + [anon_sym_u8_SQUOTE] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_L_DQUOTE] = ACTIONS(888), + [anon_sym_u_DQUOTE] = ACTIONS(888), + [anon_sym_U_DQUOTE] = ACTIONS(888), + [anon_sym_u8_DQUOTE] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [anon_sym_NULL] = ACTIONS(894), + [anon_sym_nullptr] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [46] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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(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), - [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(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_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(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), - [sym_comment] = ACTIONS(3), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1179), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(897), + [aux_sym_preproc_include_token1] = ACTIONS(899), + [aux_sym_preproc_def_token1] = ACTIONS(899), + [aux_sym_preproc_if_token1] = ACTIONS(899), + [aux_sym_preproc_if_token2] = ACTIONS(899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(899), + [aux_sym_preproc_else_token1] = ACTIONS(899), + [aux_sym_preproc_elif_token1] = ACTIONS(899), + [aux_sym_preproc_elifdef_token1] = ACTIONS(899), + [aux_sym_preproc_elifdef_token2] = ACTIONS(899), + [sym_preproc_directive] = ACTIONS(899), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(899), + [anon_sym___clrcall] = ACTIONS(899), + [anon_sym___stdcall] = ACTIONS(899), + [anon_sym___fastcall] = ACTIONS(899), + [anon_sym___thiscall] = ACTIONS(899), + [anon_sym___vectorcall] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(899), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(899), + [anon_sym_default] = ACTIONS(899), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [47] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1179), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(897), + [aux_sym_preproc_include_token1] = ACTIONS(901), + [aux_sym_preproc_def_token1] = ACTIONS(901), + [aux_sym_preproc_if_token1] = ACTIONS(901), + [aux_sym_preproc_if_token2] = ACTIONS(901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(901), + [aux_sym_preproc_else_token1] = ACTIONS(901), + [aux_sym_preproc_elif_token1] = ACTIONS(901), + [aux_sym_preproc_elifdef_token1] = ACTIONS(901), + [aux_sym_preproc_elifdef_token2] = ACTIONS(901), + [sym_preproc_directive] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(901), + [anon_sym___clrcall] = ACTIONS(901), + [anon_sym___stdcall] = ACTIONS(901), + [anon_sym___fastcall] = ACTIONS(901), + [anon_sym___thiscall] = ACTIONS(901), + [anon_sym___vectorcall] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(901), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [48] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1179), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(897), + [aux_sym_preproc_include_token1] = ACTIONS(903), + [aux_sym_preproc_def_token1] = ACTIONS(903), + [aux_sym_preproc_if_token1] = ACTIONS(903), + [aux_sym_preproc_if_token2] = ACTIONS(903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(903), + [aux_sym_preproc_else_token1] = ACTIONS(903), + [aux_sym_preproc_elif_token1] = ACTIONS(903), + [aux_sym_preproc_elifdef_token1] = ACTIONS(903), + [aux_sym_preproc_elifdef_token2] = ACTIONS(903), + [sym_preproc_directive] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(903), + [anon_sym___clrcall] = ACTIONS(903), + [anon_sym___stdcall] = ACTIONS(903), + [anon_sym___fastcall] = ACTIONS(903), + [anon_sym___thiscall] = ACTIONS(903), + [anon_sym___vectorcall] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(903), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [49] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1179), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(774), + [sym_identifier] = ACTIONS(897), [aux_sym_preproc_include_token1] = ACTIONS(905), [aux_sym_preproc_def_token1] = ACTIONS(905), [aux_sym_preproc_if_token1] = ACTIONS(905), @@ -23052,6147 +23450,6080 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(905), [aux_sym_preproc_elifdef_token2] = ACTIONS(905), [sym_preproc_directive] = ACTIONS(905), - [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_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), [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_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_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(905), - [anon_sym_switch] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), [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), - [sym_comment] = ACTIONS(3), - }, - [49] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [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), - [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(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_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(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), - [sym_comment] = ACTIONS(3), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [50] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [sym_declaration] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(198), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(198), + [sym_seh_leave_statement] = STATE(198), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(907), [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), - [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___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_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), [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_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(57), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), [anon_sym_else] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(375), [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), - [sym_comment] = ACTIONS(3), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [51] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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_comment] = ACTIONS(3), - }, - [52] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [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_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(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), - [sym_comment] = ACTIONS(3), - }, - [53] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [sym_declaration] = STATE(178), + [sym_type_definition] = STATE(178), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1178), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_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(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(56), + [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_if_token2] = ACTIONS(905), [aux_sym_preproc_ifdef_token1] = ACTIONS(905), [aux_sym_preproc_ifdef_token2] = ACTIONS(905), [sym_preproc_directive] = ACTIONS(905), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), [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_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(375), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(505), [anon_sym_else] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(507), [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), - [sym_comment] = ACTIONS(3), - }, - [54] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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(749), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [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_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(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), - [sym_comment] = ACTIONS(3), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, - [56] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [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_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(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), - [sym_comment] = ACTIONS(3), - }, - [57] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [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_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(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), - [sym_comment] = ACTIONS(3), - }, - [58] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [52] = { + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(60), + [ts_builtin_sym_end] = ACTIONS(909), + [sym_identifier] = ACTIONS(913), [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), - [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___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), [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_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(425), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(905), - [anon_sym_switch] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(61), [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), - [sym_comment] = ACTIONS(3), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, - [59] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [53] = { + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(63), + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(913), + [aux_sym_preproc_include_token1] = ACTIONS(899), + [aux_sym_preproc_def_token1] = ACTIONS(899), + [aux_sym_preproc_if_token1] = ACTIONS(899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(899), + [sym_preproc_directive] = ACTIONS(899), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(899), + [anon_sym___clrcall] = ACTIONS(899), + [anon_sym___stdcall] = ACTIONS(899), + [anon_sym___fastcall] = ACTIONS(899), + [anon_sym___thiscall] = ACTIONS(899), + [anon_sym___vectorcall] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(899), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(899), + [anon_sym_default] = ACTIONS(899), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [54] = { + [sym_declaration] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(198), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(198), + [sym_seh_leave_statement] = STATE(198), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(54), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(923), + [aux_sym_preproc_include_token1] = ACTIONS(775), + [aux_sym_preproc_def_token1] = ACTIONS(775), + [aux_sym_preproc_if_token1] = ACTIONS(775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(775), + [sym_preproc_directive] = ACTIONS(775), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym___extension__] = ACTIONS(929), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(798), + [anon_sym___attribute__] = ACTIONS(801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(804), + [anon_sym___declspec] = ACTIONS(807), + [anon_sym___cdecl] = ACTIONS(775), + [anon_sym___clrcall] = ACTIONS(775), + [anon_sym___stdcall] = ACTIONS(775), + [anon_sym___fastcall] = ACTIONS(775), + [anon_sym___thiscall] = ACTIONS(775), + [anon_sym___vectorcall] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_signed] = ACTIONS(813), + [anon_sym_unsigned] = ACTIONS(813), + [anon_sym_long] = ACTIONS(813), + [anon_sym_short] = ACTIONS(813), + [anon_sym_static] = ACTIONS(798), + [anon_sym_auto] = ACTIONS(798), + [anon_sym_register] = ACTIONS(798), + [anon_sym_inline] = ACTIONS(798), + [anon_sym___inline] = ACTIONS(798), + [anon_sym___inline__] = ACTIONS(798), + [anon_sym___forceinline] = ACTIONS(798), + [anon_sym_thread_local] = ACTIONS(798), + [anon_sym___thread] = ACTIONS(798), + [anon_sym_const] = ACTIONS(816), + [anon_sym_constexpr] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [anon_sym___restrict__] = ACTIONS(816), + [anon_sym__Atomic] = ACTIONS(816), + [anon_sym__Noreturn] = ACTIONS(816), + [anon_sym_noreturn] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(819), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(825), + [anon_sym_union] = ACTIONS(828), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(775), + [anon_sym_switch] = ACTIONS(943), + [anon_sym_case] = ACTIONS(775), + [anon_sym_default] = ACTIONS(775), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(949), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(955), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_goto] = ACTIONS(964), + [anon_sym___try] = ACTIONS(967), + [anon_sym___leave] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_sizeof] = ACTIONS(867), + [anon_sym___alignof__] = ACTIONS(870), + [anon_sym___alignof] = ACTIONS(870), + [anon_sym__alignof] = ACTIONS(870), + [anon_sym_alignof] = ACTIONS(870), + [anon_sym__Alignof] = ACTIONS(870), + [anon_sym_offsetof] = ACTIONS(873), + [anon_sym__Generic] = ACTIONS(876), + [anon_sym_asm] = ACTIONS(879), + [anon_sym___asm__] = ACTIONS(879), + [sym_number_literal] = ACTIONS(882), + [anon_sym_L_SQUOTE] = ACTIONS(885), + [anon_sym_u_SQUOTE] = ACTIONS(885), + [anon_sym_U_SQUOTE] = ACTIONS(885), + [anon_sym_u8_SQUOTE] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_L_DQUOTE] = ACTIONS(888), + [anon_sym_u_DQUOTE] = ACTIONS(888), + [anon_sym_U_DQUOTE] = ACTIONS(888), + [anon_sym_u8_DQUOTE] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [anon_sym_NULL] = ACTIONS(894), + [anon_sym_nullptr] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [55] = { + [sym_declaration] = STATE(178), + [sym_type_definition] = STATE(178), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1178), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_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(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(911), + [aux_sym_preproc_include_token1] = ACTIONS(903), + [aux_sym_preproc_def_token1] = ACTIONS(903), + [aux_sym_preproc_if_token1] = ACTIONS(903), + [aux_sym_preproc_if_token2] = ACTIONS(903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(903), + [sym_preproc_directive] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(903), + [anon_sym___clrcall] = ACTIONS(903), + [anon_sym___stdcall] = ACTIONS(903), + [anon_sym___fastcall] = ACTIONS(903), + [anon_sym___thiscall] = ACTIONS(903), + [anon_sym___vectorcall] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(505), + [anon_sym_else] = ACTIONS(903), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [56] = { + [sym_declaration] = STATE(178), + [sym_type_definition] = STATE(178), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1178), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_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(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(911), + [aux_sym_preproc_include_token1] = ACTIONS(901), + [aux_sym_preproc_def_token1] = ACTIONS(901), + [aux_sym_preproc_if_token1] = ACTIONS(901), + [aux_sym_preproc_if_token2] = ACTIONS(901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(901), + [sym_preproc_directive] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(901), + [anon_sym___clrcall] = ACTIONS(901), + [anon_sym___stdcall] = ACTIONS(901), + [anon_sym___fastcall] = ACTIONS(901), + [anon_sym___thiscall] = ACTIONS(901), + [anon_sym___vectorcall] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(505), + [anon_sym_else] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [57] = { + [sym_declaration] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(198), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(198), + [sym_seh_leave_statement] = STATE(198), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(907), + [aux_sym_preproc_include_token1] = ACTIONS(899), + [aux_sym_preproc_def_token1] = ACTIONS(899), + [aux_sym_preproc_if_token1] = ACTIONS(899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(899), + [sym_preproc_directive] = ACTIONS(899), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(899), + [anon_sym___clrcall] = ACTIONS(899), + [anon_sym___stdcall] = ACTIONS(899), + [anon_sym___fastcall] = ACTIONS(899), + [anon_sym___thiscall] = ACTIONS(899), + [anon_sym___vectorcall] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_else] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(899), + [anon_sym_default] = ACTIONS(899), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [58] = { + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(58), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), [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), - [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___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [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_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(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), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_identifier] = ACTIONS(913), + [aux_sym_preproc_include_token1] = ACTIONS(903), + [aux_sym_preproc_def_token1] = ACTIONS(903), + [aux_sym_preproc_if_token1] = ACTIONS(903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(903), + [sym_preproc_directive] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(903), + [anon_sym___clrcall] = ACTIONS(903), + [anon_sym___stdcall] = ACTIONS(903), + [anon_sym___fastcall] = ACTIONS(903), + [anon_sym___thiscall] = ACTIONS(903), + [anon_sym___vectorcall] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(903), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [59] = { + [sym_declaration] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(198), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(198), + [sym_seh_leave_statement] = STATE(198), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(907), + [aux_sym_preproc_include_token1] = ACTIONS(903), + [aux_sym_preproc_def_token1] = ACTIONS(903), + [aux_sym_preproc_if_token1] = ACTIONS(903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(903), + [sym_preproc_directive] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(903), + [anon_sym___clrcall] = ACTIONS(903), + [anon_sym___stdcall] = ACTIONS(903), + [anon_sym___fastcall] = ACTIONS(903), + [anon_sym___thiscall] = ACTIONS(903), + [anon_sym___vectorcall] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_else] = ACTIONS(903), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [60] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(63), + [ts_builtin_sym_end] = ACTIONS(975), + [sym_identifier] = ACTIONS(913), + [aux_sym_preproc_include_token1] = ACTIONS(901), + [aux_sym_preproc_def_token1] = ACTIONS(901), + [aux_sym_preproc_if_token1] = ACTIONS(901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(901), + [sym_preproc_directive] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(901), + [anon_sym___clrcall] = ACTIONS(901), + [anon_sym___stdcall] = ACTIONS(901), + [anon_sym___fastcall] = ACTIONS(901), + [anon_sym___thiscall] = ACTIONS(901), + [anon_sym___vectorcall] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(901), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [61] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym_declaration] = STATE(178), + [sym_type_definition] = STATE(178), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1178), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_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(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), [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), - [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___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(41), - [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(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), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(899), + [aux_sym_preproc_def_token1] = ACTIONS(899), + [aux_sym_preproc_if_token1] = ACTIONS(899), + [aux_sym_preproc_if_token2] = ACTIONS(899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(899), + [sym_preproc_directive] = ACTIONS(899), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(899), + [anon_sym___clrcall] = ACTIONS(899), + [anon_sym___stdcall] = ACTIONS(899), + [anon_sym___fastcall] = ACTIONS(899), + [anon_sym___thiscall] = ACTIONS(899), + [anon_sym___vectorcall] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(505), + [anon_sym_else] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(899), + [anon_sym_default] = ACTIONS(899), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [62] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___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(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_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(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), - [sym_comment] = ACTIONS(3), + [sym_declaration] = STATE(178), + [sym_type_definition] = STATE(178), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1178), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(178), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_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(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(775), + [aux_sym_preproc_def_token1] = ACTIONS(775), + [aux_sym_preproc_if_token1] = ACTIONS(775), + [aux_sym_preproc_if_token2] = ACTIONS(775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(775), + [sym_preproc_directive] = ACTIONS(775), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym___extension__] = ACTIONS(983), + [anon_sym_typedef] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(798), + [anon_sym___attribute__] = ACTIONS(801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(804), + [anon_sym___declspec] = ACTIONS(807), + [anon_sym___cdecl] = ACTIONS(775), + [anon_sym___clrcall] = ACTIONS(775), + [anon_sym___stdcall] = ACTIONS(775), + [anon_sym___fastcall] = ACTIONS(775), + [anon_sym___thiscall] = ACTIONS(775), + [anon_sym___vectorcall] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_signed] = ACTIONS(813), + [anon_sym_unsigned] = ACTIONS(813), + [anon_sym_long] = ACTIONS(813), + [anon_sym_short] = ACTIONS(813), + [anon_sym_static] = ACTIONS(798), + [anon_sym_auto] = ACTIONS(798), + [anon_sym_register] = ACTIONS(798), + [anon_sym_inline] = ACTIONS(798), + [anon_sym___inline] = ACTIONS(798), + [anon_sym___inline__] = ACTIONS(798), + [anon_sym___forceinline] = ACTIONS(798), + [anon_sym_thread_local] = ACTIONS(798), + [anon_sym___thread] = ACTIONS(798), + [anon_sym_const] = ACTIONS(816), + [anon_sym_constexpr] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [anon_sym___restrict__] = ACTIONS(816), + [anon_sym__Atomic] = ACTIONS(816), + [anon_sym__Noreturn] = ACTIONS(816), + [anon_sym_noreturn] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(819), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(825), + [anon_sym_union] = ACTIONS(828), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(775), + [anon_sym_switch] = ACTIONS(995), + [anon_sym_case] = ACTIONS(775), + [anon_sym_default] = ACTIONS(775), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym___try] = ACTIONS(1019), + [anon_sym___leave] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_sizeof] = ACTIONS(867), + [anon_sym___alignof__] = ACTIONS(870), + [anon_sym___alignof] = ACTIONS(870), + [anon_sym__alignof] = ACTIONS(870), + [anon_sym_alignof] = ACTIONS(870), + [anon_sym__Alignof] = ACTIONS(870), + [anon_sym_offsetof] = ACTIONS(873), + [anon_sym__Generic] = ACTIONS(876), + [anon_sym_asm] = ACTIONS(879), + [anon_sym___asm__] = ACTIONS(879), + [sym_number_literal] = ACTIONS(882), + [anon_sym_L_SQUOTE] = ACTIONS(885), + [anon_sym_u_SQUOTE] = ACTIONS(885), + [anon_sym_U_SQUOTE] = ACTIONS(885), + [anon_sym_u8_SQUOTE] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_L_DQUOTE] = ACTIONS(888), + [anon_sym_u_DQUOTE] = ACTIONS(888), + [anon_sym_U_DQUOTE] = ACTIONS(888), + [anon_sym_u8_DQUOTE] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [anon_sym_NULL] = ACTIONS(894), + [anon_sym_nullptr] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [63] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [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), - [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___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [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_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(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), - [sym_comment] = ACTIONS(3), + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(63), + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(1025), + [aux_sym_preproc_include_token1] = ACTIONS(775), + [aux_sym_preproc_def_token1] = ACTIONS(775), + [aux_sym_preproc_if_token1] = ACTIONS(775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(775), + [sym_preproc_directive] = ACTIONS(775), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym___extension__] = ACTIONS(1031), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(798), + [anon_sym___attribute__] = ACTIONS(801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(804), + [anon_sym___declspec] = ACTIONS(807), + [anon_sym___cdecl] = ACTIONS(775), + [anon_sym___clrcall] = ACTIONS(775), + [anon_sym___stdcall] = ACTIONS(775), + [anon_sym___fastcall] = ACTIONS(775), + [anon_sym___thiscall] = ACTIONS(775), + [anon_sym___vectorcall] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_signed] = ACTIONS(813), + [anon_sym_unsigned] = ACTIONS(813), + [anon_sym_long] = ACTIONS(813), + [anon_sym_short] = ACTIONS(813), + [anon_sym_static] = ACTIONS(798), + [anon_sym_auto] = ACTIONS(798), + [anon_sym_register] = ACTIONS(798), + [anon_sym_inline] = ACTIONS(798), + [anon_sym___inline] = ACTIONS(798), + [anon_sym___inline__] = ACTIONS(798), + [anon_sym___forceinline] = ACTIONS(798), + [anon_sym_thread_local] = ACTIONS(798), + [anon_sym___thread] = ACTIONS(798), + [anon_sym_const] = ACTIONS(816), + [anon_sym_constexpr] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [anon_sym___restrict__] = ACTIONS(816), + [anon_sym__Atomic] = ACTIONS(816), + [anon_sym__Noreturn] = ACTIONS(816), + [anon_sym_noreturn] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(819), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(825), + [anon_sym_union] = ACTIONS(828), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(775), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_case] = ACTIONS(775), + [anon_sym_default] = ACTIONS(775), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1055), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym___try] = ACTIONS(1067), + [anon_sym___leave] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_sizeof] = ACTIONS(867), + [anon_sym___alignof__] = ACTIONS(870), + [anon_sym___alignof] = ACTIONS(870), + [anon_sym__alignof] = ACTIONS(870), + [anon_sym_alignof] = ACTIONS(870), + [anon_sym__Alignof] = ACTIONS(870), + [anon_sym_offsetof] = ACTIONS(873), + [anon_sym__Generic] = ACTIONS(876), + [anon_sym_asm] = ACTIONS(879), + [anon_sym___asm__] = ACTIONS(879), + [sym_number_literal] = ACTIONS(882), + [anon_sym_L_SQUOTE] = ACTIONS(885), + [anon_sym_u_SQUOTE] = ACTIONS(885), + [anon_sym_U_SQUOTE] = ACTIONS(885), + [anon_sym_u8_SQUOTE] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_L_DQUOTE] = ACTIONS(888), + [anon_sym_u_DQUOTE] = ACTIONS(888), + [anon_sym_U_DQUOTE] = ACTIONS(888), + [anon_sym_u8_DQUOTE] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [anon_sym_NULL] = ACTIONS(894), + [anon_sym_nullptr] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [64] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [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), - [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___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(41), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_declaration] = STATE(198), + [sym_type_definition] = STATE(198), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(198), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(198), + [sym_seh_leave_statement] = STATE(198), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(907), + [aux_sym_preproc_include_token1] = ACTIONS(901), + [aux_sym_preproc_def_token1] = ACTIONS(901), + [aux_sym_preproc_if_token1] = ACTIONS(901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(901), + [sym_preproc_directive] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(363), + [anon_sym_typedef] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(901), + [anon_sym___clrcall] = ACTIONS(901), + [anon_sym___stdcall] = ACTIONS(901), + [anon_sym___fastcall] = ACTIONS(901), + [anon_sym___thiscall] = ACTIONS(901), + [anon_sym___vectorcall] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(373), + [anon_sym_else] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [65] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1075), - [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___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_LBRACE] = ACTIONS(41), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1073), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(1075), + [anon_sym_else] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [66] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1075), - [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___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_LBRACE] = ACTIONS(41), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1083), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym___extension__] = ACTIONS(1031), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(798), + [anon_sym___attribute__] = ACTIONS(801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(804), + [anon_sym___declspec] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_signed] = ACTIONS(813), + [anon_sym_unsigned] = ACTIONS(813), + [anon_sym_long] = ACTIONS(813), + [anon_sym_short] = ACTIONS(813), + [anon_sym_static] = ACTIONS(798), + [anon_sym_auto] = ACTIONS(798), + [anon_sym_register] = ACTIONS(798), + [anon_sym_inline] = ACTIONS(798), + [anon_sym___inline] = ACTIONS(798), + [anon_sym___inline__] = ACTIONS(798), + [anon_sym___forceinline] = ACTIONS(798), + [anon_sym_thread_local] = ACTIONS(798), + [anon_sym___thread] = ACTIONS(798), + [anon_sym_const] = ACTIONS(816), + [anon_sym_constexpr] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [anon_sym___restrict__] = ACTIONS(816), + [anon_sym__Atomic] = ACTIONS(816), + [anon_sym__Noreturn] = ACTIONS(816), + [anon_sym_noreturn] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(819), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(825), + [anon_sym_union] = ACTIONS(828), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(775), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1055), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym___try] = ACTIONS(1095), + [anon_sym___leave] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_sizeof] = ACTIONS(867), + [anon_sym___alignof__] = ACTIONS(870), + [anon_sym___alignof] = ACTIONS(870), + [anon_sym__alignof] = ACTIONS(870), + [anon_sym_alignof] = ACTIONS(870), + [anon_sym__Alignof] = ACTIONS(870), + [anon_sym_offsetof] = ACTIONS(873), + [anon_sym__Generic] = ACTIONS(876), + [anon_sym_asm] = ACTIONS(879), + [anon_sym___asm__] = ACTIONS(879), + [sym_number_literal] = ACTIONS(882), + [anon_sym_L_SQUOTE] = ACTIONS(885), + [anon_sym_u_SQUOTE] = ACTIONS(885), + [anon_sym_U_SQUOTE] = ACTIONS(885), + [anon_sym_u8_SQUOTE] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_L_DQUOTE] = ACTIONS(888), + [anon_sym_u_DQUOTE] = ACTIONS(888), + [anon_sym_U_DQUOTE] = ACTIONS(888), + [anon_sym_u8_DQUOTE] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [anon_sym_NULL] = ACTIONS(894), + [anon_sym_nullptr] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [67] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [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_comment] = ACTIONS(3), + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(1073), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(1075), + [anon_sym_else] = ACTIONS(903), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [68] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(68), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1075), - [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___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_LBRACE] = ACTIONS(41), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1073), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(1075), + [anon_sym_else] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [69] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___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_LBRACE] = ACTIONS(41), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_declaration] = STATE(304), + [sym_type_definition] = STATE(304), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(466), + [sym_ms_declspec_modifier] = STATE(782), + [sym_compound_statement] = STATE(304), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1073), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(1075), + [anon_sym_else] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [70] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__for_statement_body] = STATE(1886), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), - [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(1102), - [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), - [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), + [sym_declaration] = STATE(520), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(1832), + [sym__expression] = STATE(1070), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1875), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [71] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__for_statement_body] = STATE(1940), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), - [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(1102), - [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), - [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), + [sym_declaration] = STATE(520), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(1867), + [sym__expression] = STATE(1070), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1875), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [72] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__for_statement_body] = STATE(1951), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), - [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(1102), - [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), - [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), + [sym_declaration] = STATE(520), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(1822), + [sym__expression] = STATE(1070), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1875), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [73] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__for_statement_body] = STATE(1972), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), - [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(1102), - [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), - [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), + [sym_declaration] = STATE(520), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(1927), + [sym__expression] = STATE(1070), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1875), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(73), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [74] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__for_statement_body] = STATE(1882), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), - [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(1102), - [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), - [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), + [sym_declaration] = STATE(520), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1185), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(1981), + [sym__expression] = STATE(1070), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1875), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = 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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_else_clause] = STATE(120), + [sym_comment] = STATE(75), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [aux_sym_preproc_else_token1] = ACTIONS(1104), + [aux_sym_preproc_elif_token1] = ACTIONS(1104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym___extension__] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym___inline] = ACTIONS(1104), + [anon_sym___inline__] = ACTIONS(1104), + [anon_sym___forceinline] = ACTIONS(1104), + [anon_sym_thread_local] = ACTIONS(1104), + [anon_sym___thread] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_constexpr] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_noreturn] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym___try] = ACTIONS(1104), + [anon_sym___leave] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym___alignof__] = ACTIONS(1104), + [anon_sym___alignof] = ACTIONS(1104), + [anon_sym__alignof] = ACTIONS(1104), + [anon_sym_alignof] = ACTIONS(1104), + [anon_sym__Alignof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [anon_sym_NULL] = ACTIONS(1104), + [anon_sym_nullptr] = ACTIONS(1104), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(76), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [aux_sym_preproc_else_token1] = ACTIONS(1110), + [aux_sym_preproc_elif_token1] = ACTIONS(1110), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym___extension__] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym___inline] = ACTIONS(1110), + [anon_sym___inline__] = ACTIONS(1110), + [anon_sym___forceinline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym___thread] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym___try] = ACTIONS(1110), + [anon_sym___leave] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym___alignof__] = ACTIONS(1110), + [anon_sym___alignof] = ACTIONS(1110), + [anon_sym__alignof] = ACTIONS(1110), + [anon_sym_alignof] = ACTIONS(1110), + [anon_sym__Alignof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(77), + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token2] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [aux_sym_preproc_else_token1] = ACTIONS(1114), + [aux_sym_preproc_elif_token1] = ACTIONS(1114), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym___extension__] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym___inline] = ACTIONS(1114), + [anon_sym___inline__] = ACTIONS(1114), + [anon_sym___forceinline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym___thread] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym___try] = ACTIONS(1114), + [anon_sym___leave] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym___alignof__] = ACTIONS(1114), + [anon_sym___alignof] = ACTIONS(1114), + [anon_sym__alignof] = ACTIONS(1114), + [anon_sym_alignof] = ACTIONS(1114), + [anon_sym__Alignof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(78), + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token2] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [aux_sym_preproc_else_token1] = ACTIONS(1118), + [aux_sym_preproc_elif_token1] = ACTIONS(1118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym___extension__] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym___inline] = ACTIONS(1118), + [anon_sym___inline__] = ACTIONS(1118), + [anon_sym___forceinline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym___thread] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym___try] = ACTIONS(1118), + [anon_sym___leave] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym___alignof__] = ACTIONS(1118), + [anon_sym___alignof] = ACTIONS(1118), + [anon_sym__alignof] = ACTIONS(1118), + [anon_sym_alignof] = ACTIONS(1118), + [anon_sym__Alignof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(79), + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [aux_sym_preproc_else_token1] = ACTIONS(1122), + [aux_sym_preproc_elif_token1] = ACTIONS(1122), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym___extension__] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym___inline] = ACTIONS(1122), + [anon_sym___inline__] = ACTIONS(1122), + [anon_sym___forceinline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym___thread] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym___try] = ACTIONS(1122), + [anon_sym___leave] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym___alignof__] = ACTIONS(1122), + [anon_sym___alignof] = ACTIONS(1122), + [anon_sym__alignof] = ACTIONS(1122), + [anon_sym_alignof] = ACTIONS(1122), + [anon_sym__Alignof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(80), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [aux_sym_preproc_else_token1] = ACTIONS(1126), + [aux_sym_preproc_elif_token1] = ACTIONS(1126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym___extension__] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym___inline] = ACTIONS(1126), + [anon_sym___inline__] = ACTIONS(1126), + [anon_sym___forceinline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym___thread] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym___try] = ACTIONS(1126), + [anon_sym___leave] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym___alignof__] = ACTIONS(1126), + [anon_sym___alignof] = ACTIONS(1126), + [anon_sym__alignof] = ACTIONS(1126), + [anon_sym_alignof] = ACTIONS(1126), + [anon_sym__Alignof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(81), + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [aux_sym_preproc_else_token1] = ACTIONS(1130), + [aux_sym_preproc_elif_token1] = ACTIONS(1130), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym___inline] = ACTIONS(1130), + [anon_sym___inline__] = ACTIONS(1130), + [anon_sym___forceinline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym___thread] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym___try] = ACTIONS(1130), + [anon_sym___leave] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym___alignof__] = ACTIONS(1130), + [anon_sym___alignof] = ACTIONS(1130), + [anon_sym__alignof] = ACTIONS(1130), + [anon_sym_alignof] = ACTIONS(1130), + [anon_sym__Alignof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(82), + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token2] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [aux_sym_preproc_else_token1] = ACTIONS(1134), + [aux_sym_preproc_elif_token1] = ACTIONS(1134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym___extension__] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym___declspec] = ACTIONS(1134), + [anon_sym___cdecl] = ACTIONS(1134), + [anon_sym___clrcall] = ACTIONS(1134), + [anon_sym___stdcall] = ACTIONS(1134), + [anon_sym___fastcall] = ACTIONS(1134), + [anon_sym___thiscall] = ACTIONS(1134), + [anon_sym___vectorcall] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym___inline] = ACTIONS(1134), + [anon_sym___inline__] = ACTIONS(1134), + [anon_sym___forceinline] = ACTIONS(1134), + [anon_sym_thread_local] = ACTIONS(1134), + [anon_sym___thread] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_constexpr] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym___restrict__] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym__Noreturn] = ACTIONS(1134), + [anon_sym_noreturn] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym___try] = ACTIONS(1134), + [anon_sym___leave] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym___alignof__] = ACTIONS(1134), + [anon_sym___alignof] = ACTIONS(1134), + [anon_sym__alignof] = ACTIONS(1134), + [anon_sym_alignof] = ACTIONS(1134), + [anon_sym__Alignof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = ACTIONS(1134), + [anon_sym_asm] = ACTIONS(1134), + [anon_sym___asm__] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [anon_sym_NULL] = ACTIONS(1134), + [anon_sym_nullptr] = ACTIONS(1134), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(83), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [aux_sym_preproc_else_token1] = ACTIONS(1138), + [aux_sym_preproc_elif_token1] = ACTIONS(1138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(84), + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token2] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [aux_sym_preproc_else_token1] = ACTIONS(1142), + [aux_sym_preproc_elif_token1] = ACTIONS(1142), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym___extension__] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym___declspec] = ACTIONS(1142), + [anon_sym___cdecl] = ACTIONS(1142), + [anon_sym___clrcall] = ACTIONS(1142), + [anon_sym___stdcall] = ACTIONS(1142), + [anon_sym___fastcall] = ACTIONS(1142), + [anon_sym___thiscall] = ACTIONS(1142), + [anon_sym___vectorcall] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym___inline] = ACTIONS(1142), + [anon_sym___inline__] = ACTIONS(1142), + [anon_sym___forceinline] = ACTIONS(1142), + [anon_sym_thread_local] = ACTIONS(1142), + [anon_sym___thread] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_constexpr] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym___restrict__] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym__Noreturn] = ACTIONS(1142), + [anon_sym_noreturn] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym___try] = ACTIONS(1142), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym___alignof__] = ACTIONS(1142), + [anon_sym___alignof] = ACTIONS(1142), + [anon_sym__alignof] = ACTIONS(1142), + [anon_sym_alignof] = ACTIONS(1142), + [anon_sym__Alignof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = ACTIONS(1142), + [anon_sym_asm] = ACTIONS(1142), + [anon_sym___asm__] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [anon_sym_NULL] = ACTIONS(1142), + [anon_sym_nullptr] = ACTIONS(1142), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(85), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token2] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [aux_sym_preproc_else_token1] = ACTIONS(1146), + [aux_sym_preproc_elif_token1] = ACTIONS(1146), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), + [anon_sym___declspec] = ACTIONS(1146), + [anon_sym___cdecl] = ACTIONS(1146), + [anon_sym___clrcall] = ACTIONS(1146), + [anon_sym___stdcall] = ACTIONS(1146), + [anon_sym___fastcall] = ACTIONS(1146), + [anon_sym___thiscall] = ACTIONS(1146), + [anon_sym___vectorcall] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym___inline] = ACTIONS(1146), + [anon_sym___inline__] = ACTIONS(1146), + [anon_sym___forceinline] = ACTIONS(1146), + [anon_sym_thread_local] = ACTIONS(1146), + [anon_sym___thread] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_constexpr] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym___restrict__] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym__Noreturn] = ACTIONS(1146), + [anon_sym_noreturn] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1146), + [anon_sym___leave] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym___alignof__] = ACTIONS(1146), + [anon_sym___alignof] = ACTIONS(1146), + [anon_sym__alignof] = ACTIONS(1146), + [anon_sym_alignof] = ACTIONS(1146), + [anon_sym__Alignof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = ACTIONS(1146), + [anon_sym_asm] = ACTIONS(1146), + [anon_sym___asm__] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_nullptr] = ACTIONS(1146), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(86), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token2] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [aux_sym_preproc_else_token1] = ACTIONS(1150), + [aux_sym_preproc_elif_token1] = ACTIONS(1150), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym___declspec] = ACTIONS(1150), + [anon_sym___cdecl] = ACTIONS(1150), + [anon_sym___clrcall] = ACTIONS(1150), + [anon_sym___stdcall] = ACTIONS(1150), + [anon_sym___fastcall] = ACTIONS(1150), + [anon_sym___thiscall] = ACTIONS(1150), + [anon_sym___vectorcall] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym___inline] = ACTIONS(1150), + [anon_sym___inline__] = ACTIONS(1150), + [anon_sym___forceinline] = ACTIONS(1150), + [anon_sym_thread_local] = ACTIONS(1150), + [anon_sym___thread] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_constexpr] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym___restrict__] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym__Noreturn] = ACTIONS(1150), + [anon_sym_noreturn] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1150), + [anon_sym___leave] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym___alignof__] = ACTIONS(1150), + [anon_sym___alignof] = ACTIONS(1150), + [anon_sym__alignof] = ACTIONS(1150), + [anon_sym_alignof] = ACTIONS(1150), + [anon_sym__Alignof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1150), + [anon_sym_asm] = ACTIONS(1150), + [anon_sym___asm__] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [anon_sym_NULL] = ACTIONS(1150), + [anon_sym_nullptr] = ACTIONS(1150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(87), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(88), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(89), + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [aux_sym_preproc_else_token1] = ACTIONS(1158), + [aux_sym_preproc_elif_token1] = ACTIONS(1158), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym___extension__] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(1158), + [anon_sym___cdecl] = ACTIONS(1158), + [anon_sym___clrcall] = ACTIONS(1158), + [anon_sym___stdcall] = ACTIONS(1158), + [anon_sym___fastcall] = ACTIONS(1158), + [anon_sym___thiscall] = ACTIONS(1158), + [anon_sym___vectorcall] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___inline] = ACTIONS(1158), + [anon_sym___inline__] = ACTIONS(1158), + [anon_sym___forceinline] = ACTIONS(1158), + [anon_sym_thread_local] = ACTIONS(1158), + [anon_sym___thread] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_constexpr] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym___restrict__] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym__Noreturn] = ACTIONS(1158), + [anon_sym_noreturn] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1158), + [anon_sym___leave] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym___alignof__] = ACTIONS(1158), + [anon_sym___alignof] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1158), + [anon_sym_alignof] = ACTIONS(1158), + [anon_sym__Alignof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = ACTIONS(1158), + [anon_sym_asm] = ACTIONS(1158), + [anon_sym___asm__] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_NULL] = ACTIONS(1158), + [anon_sym_nullptr] = ACTIONS(1158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(90), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(91), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(92), + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token2] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [aux_sym_preproc_else_token1] = ACTIONS(1162), + [aux_sym_preproc_elif_token1] = ACTIONS(1162), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), + [anon_sym___declspec] = ACTIONS(1162), + [anon_sym___cdecl] = ACTIONS(1162), + [anon_sym___clrcall] = ACTIONS(1162), + [anon_sym___stdcall] = ACTIONS(1162), + [anon_sym___fastcall] = ACTIONS(1162), + [anon_sym___thiscall] = ACTIONS(1162), + [anon_sym___vectorcall] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym___inline] = ACTIONS(1162), + [anon_sym___inline__] = ACTIONS(1162), + [anon_sym___forceinline] = ACTIONS(1162), + [anon_sym_thread_local] = ACTIONS(1162), + [anon_sym___thread] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_constexpr] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym___restrict__] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym__Noreturn] = ACTIONS(1162), + [anon_sym_noreturn] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1162), + [anon_sym___leave] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym___alignof__] = ACTIONS(1162), + [anon_sym___alignof] = ACTIONS(1162), + [anon_sym__alignof] = ACTIONS(1162), + [anon_sym_alignof] = ACTIONS(1162), + [anon_sym__Alignof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = ACTIONS(1162), + [anon_sym_asm] = ACTIONS(1162), + [anon_sym___asm__] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [anon_sym_NULL] = ACTIONS(1162), + [anon_sym_nullptr] = ACTIONS(1162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(93), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [aux_sym_preproc_else_token1] = ACTIONS(1166), + [aux_sym_preproc_elif_token1] = ACTIONS(1166), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym___declspec] = ACTIONS(1166), + [anon_sym___cdecl] = ACTIONS(1166), + [anon_sym___clrcall] = ACTIONS(1166), + [anon_sym___stdcall] = ACTIONS(1166), + [anon_sym___fastcall] = ACTIONS(1166), + [anon_sym___thiscall] = ACTIONS(1166), + [anon_sym___vectorcall] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___inline] = ACTIONS(1166), + [anon_sym___inline__] = ACTIONS(1166), + [anon_sym___forceinline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1166), + [anon_sym___thread] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_constexpr] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym___restrict__] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym__Noreturn] = ACTIONS(1166), + [anon_sym_noreturn] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1166), + [anon_sym___leave] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym___alignof__] = ACTIONS(1166), + [anon_sym___alignof] = ACTIONS(1166), + [anon_sym__alignof] = ACTIONS(1166), + [anon_sym_alignof] = ACTIONS(1166), + [anon_sym__Alignof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = ACTIONS(1166), + [anon_sym_asm] = ACTIONS(1166), + [anon_sym___asm__] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_NULL] = ACTIONS(1166), + [anon_sym_nullptr] = ACTIONS(1166), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(94), + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token2] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [aux_sym_preproc_else_token1] = ACTIONS(1170), + [aux_sym_preproc_elif_token1] = ACTIONS(1170), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym___extension__] = ACTIONS(1170), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), + [anon_sym___declspec] = ACTIONS(1170), + [anon_sym___cdecl] = ACTIONS(1170), + [anon_sym___clrcall] = ACTIONS(1170), + [anon_sym___stdcall] = ACTIONS(1170), + [anon_sym___fastcall] = ACTIONS(1170), + [anon_sym___thiscall] = ACTIONS(1170), + [anon_sym___vectorcall] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym___inline] = ACTIONS(1170), + [anon_sym___inline__] = ACTIONS(1170), + [anon_sym___forceinline] = ACTIONS(1170), + [anon_sym_thread_local] = ACTIONS(1170), + [anon_sym___thread] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_constexpr] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym___restrict__] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym__Noreturn] = ACTIONS(1170), + [anon_sym_noreturn] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym___try] = ACTIONS(1170), + [anon_sym___leave] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym___alignof__] = ACTIONS(1170), + [anon_sym___alignof] = ACTIONS(1170), + [anon_sym__alignof] = ACTIONS(1170), + [anon_sym_alignof] = ACTIONS(1170), + [anon_sym__Alignof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = ACTIONS(1170), + [anon_sym_asm] = ACTIONS(1170), + [anon_sym___asm__] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [anon_sym_NULL] = ACTIONS(1170), + [anon_sym_nullptr] = ACTIONS(1170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(95), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [aux_sym_preproc_else_token1] = ACTIONS(1174), + [aux_sym_preproc_elif_token1] = ACTIONS(1174), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(96), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [aux_sym_preproc_else_token1] = ACTIONS(1178), + [aux_sym_preproc_elif_token1] = ACTIONS(1178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [97] = { + [sym_comment] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(1182), [sym_identifier] = ACTIONS(1184), [aux_sym_preproc_include_token1] = ACTIONS(1184), [aux_sym_preproc_def_token1] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_RPAREN] = ACTIONS(1182), [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_LPAREN2] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1182), [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_STAR] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1182), [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_LBRACK_LBRACK] = ACTIONS(1182), [anon_sym___declspec] = ACTIONS(1184), [anon_sym___cdecl] = ACTIONS(1184), [anon_sym___clrcall] = ACTIONS(1184), @@ -29200,7 +29531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1184), [anon_sym___thiscall] = ACTIONS(1184), [anon_sym___vectorcall] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1182), [anon_sym_signed] = ACTIONS(1184), [anon_sym_unsigned] = ACTIONS(1184), [anon_sym_long] = ACTIONS(1184), @@ -29239,9 +29570,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1184), [anon_sym_goto] = ACTIONS(1184), [anon_sym___try] = ACTIONS(1184), + [anon_sym___except] = ACTIONS(1184), + [anon_sym___finally] = ACTIONS(1184), [anon_sym___leave] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), [anon_sym_sizeof] = ACTIONS(1184), [anon_sym___alignof__] = ACTIONS(1184), [anon_sym___alignof] = ACTIONS(1184), @@ -29252,10327 +29585,11242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(1184), [sym_false] = ACTIONS(1184), [anon_sym_NULL] = ACTIONS(1184), [anon_sym_nullptr] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(98), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(99), + [sym_identifier] = ACTIONS(1186), + [aux_sym_preproc_include_token1] = ACTIONS(1186), + [aux_sym_preproc_def_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token2] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), + [aux_sym_preproc_else_token1] = ACTIONS(1186), + [aux_sym_preproc_elif_token1] = ACTIONS(1186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1186), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym___extension__] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym___attribute__] = ACTIONS(1186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), + [anon_sym___declspec] = ACTIONS(1186), + [anon_sym___cdecl] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1186), + [anon_sym___stdcall] = ACTIONS(1186), + [anon_sym___fastcall] = ACTIONS(1186), + [anon_sym___thiscall] = ACTIONS(1186), + [anon_sym___vectorcall] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym___inline] = ACTIONS(1186), + [anon_sym___inline__] = ACTIONS(1186), + [anon_sym___forceinline] = ACTIONS(1186), + [anon_sym_thread_local] = ACTIONS(1186), + [anon_sym___thread] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_constexpr] = ACTIONS(1186), + [anon_sym_volatile] = ACTIONS(1186), + [anon_sym_restrict] = ACTIONS(1186), + [anon_sym___restrict__] = ACTIONS(1186), + [anon_sym__Atomic] = ACTIONS(1186), + [anon_sym__Noreturn] = ACTIONS(1186), + [anon_sym_noreturn] = ACTIONS(1186), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym___try] = ACTIONS(1186), + [anon_sym___leave] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym___alignof__] = ACTIONS(1186), + [anon_sym___alignof] = ACTIONS(1186), + [anon_sym__alignof] = ACTIONS(1186), + [anon_sym_alignof] = ACTIONS(1186), + [anon_sym__Alignof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = ACTIONS(1186), + [anon_sym_asm] = ACTIONS(1186), + [anon_sym___asm__] = ACTIONS(1186), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(1188), + [anon_sym_u_SQUOTE] = ACTIONS(1188), + [anon_sym_U_SQUOTE] = ACTIONS(1188), + [anon_sym_u8_SQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_L_DQUOTE] = ACTIONS(1188), + [anon_sym_u_DQUOTE] = ACTIONS(1188), + [anon_sym_U_DQUOTE] = ACTIONS(1188), + [anon_sym_u8_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [anon_sym_NULL] = ACTIONS(1186), + [anon_sym_nullptr] = ACTIONS(1186), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(100), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(101), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(102), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [aux_sym_preproc_else_token1] = ACTIONS(1190), + [aux_sym_preproc_elif_token1] = ACTIONS(1190), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym___inline] = ACTIONS(1190), + [anon_sym___inline__] = ACTIONS(1190), + [anon_sym___forceinline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym___thread] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym___alignof__] = ACTIONS(1190), + [anon_sym___alignof] = ACTIONS(1190), + [anon_sym__alignof] = ACTIONS(1190), + [anon_sym_alignof] = ACTIONS(1190), + [anon_sym__Alignof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(103), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token2] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [aux_sym_preproc_else_token1] = ACTIONS(1194), + [aux_sym_preproc_elif_token1] = ACTIONS(1194), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(104), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(105), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token2] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [aux_sym_preproc_else_token1] = ACTIONS(1198), + [aux_sym_preproc_elif_token1] = ACTIONS(1198), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(106), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token2] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [aux_sym_preproc_else_token1] = ACTIONS(1202), + [aux_sym_preproc_elif_token1] = ACTIONS(1202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(107), + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token2] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [aux_sym_preproc_else_token1] = ACTIONS(1206), + [aux_sym_preproc_elif_token1] = ACTIONS(1206), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym___attribute__] = ACTIONS(1206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), + [anon_sym___declspec] = ACTIONS(1206), + [anon_sym___cdecl] = ACTIONS(1206), + [anon_sym___clrcall] = ACTIONS(1206), + [anon_sym___stdcall] = ACTIONS(1206), + [anon_sym___fastcall] = ACTIONS(1206), + [anon_sym___thiscall] = ACTIONS(1206), + [anon_sym___vectorcall] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym___inline] = ACTIONS(1206), + [anon_sym___inline__] = ACTIONS(1206), + [anon_sym___forceinline] = ACTIONS(1206), + [anon_sym_thread_local] = ACTIONS(1206), + [anon_sym___thread] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_constexpr] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_restrict] = ACTIONS(1206), + [anon_sym___restrict__] = ACTIONS(1206), + [anon_sym__Atomic] = ACTIONS(1206), + [anon_sym__Noreturn] = ACTIONS(1206), + [anon_sym_noreturn] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_goto] = ACTIONS(1206), + [anon_sym___try] = ACTIONS(1206), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym___alignof__] = ACTIONS(1206), + [anon_sym___alignof] = ACTIONS(1206), + [anon_sym__alignof] = ACTIONS(1206), + [anon_sym_alignof] = ACTIONS(1206), + [anon_sym__Alignof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = ACTIONS(1206), + [anon_sym_asm] = ACTIONS(1206), + [anon_sym___asm__] = ACTIONS(1206), + [sym_number_literal] = ACTIONS(1208), + [anon_sym_L_SQUOTE] = ACTIONS(1208), + [anon_sym_u_SQUOTE] = ACTIONS(1208), + [anon_sym_U_SQUOTE] = ACTIONS(1208), + [anon_sym_u8_SQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_L_DQUOTE] = ACTIONS(1208), + [anon_sym_u_DQUOTE] = ACTIONS(1208), + [anon_sym_U_DQUOTE] = ACTIONS(1208), + [anon_sym_u8_DQUOTE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [anon_sym_NULL] = ACTIONS(1206), + [anon_sym_nullptr] = ACTIONS(1206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(108), + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(1210), + [aux_sym_preproc_def_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token2] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), + [aux_sym_preproc_else_token1] = ACTIONS(1210), + [aux_sym_preproc_elif_token1] = ACTIONS(1210), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1210), + [sym_preproc_directive] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym___attribute__] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), + [anon_sym___declspec] = ACTIONS(1210), + [anon_sym___cdecl] = ACTIONS(1210), + [anon_sym___clrcall] = ACTIONS(1210), + [anon_sym___stdcall] = ACTIONS(1210), + [anon_sym___fastcall] = ACTIONS(1210), + [anon_sym___thiscall] = ACTIONS(1210), + [anon_sym___vectorcall] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym___inline] = ACTIONS(1210), + [anon_sym___inline__] = ACTIONS(1210), + [anon_sym___forceinline] = ACTIONS(1210), + [anon_sym_thread_local] = ACTIONS(1210), + [anon_sym___thread] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_constexpr] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_restrict] = ACTIONS(1210), + [anon_sym___restrict__] = ACTIONS(1210), + [anon_sym__Atomic] = ACTIONS(1210), + [anon_sym__Noreturn] = ACTIONS(1210), + [anon_sym_noreturn] = ACTIONS(1210), + [sym_primitive_type] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_goto] = ACTIONS(1210), + [anon_sym___try] = ACTIONS(1210), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym___alignof__] = ACTIONS(1210), + [anon_sym___alignof] = ACTIONS(1210), + [anon_sym__alignof] = ACTIONS(1210), + [anon_sym_alignof] = ACTIONS(1210), + [anon_sym__Alignof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(109), + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token2] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [aux_sym_preproc_else_token1] = ACTIONS(1214), + [aux_sym_preproc_elif_token1] = ACTIONS(1214), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_LPAREN2] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), + [anon_sym___declspec] = ACTIONS(1214), + [anon_sym___cdecl] = ACTIONS(1214), + [anon_sym___clrcall] = ACTIONS(1214), + [anon_sym___stdcall] = ACTIONS(1214), + [anon_sym___fastcall] = ACTIONS(1214), + [anon_sym___thiscall] = ACTIONS(1214), + [anon_sym___vectorcall] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___inline] = ACTIONS(1214), + [anon_sym___inline__] = ACTIONS(1214), + [anon_sym___forceinline] = ACTIONS(1214), + [anon_sym_thread_local] = ACTIONS(1214), + [anon_sym___thread] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_constexpr] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym___restrict__] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym__Noreturn] = ACTIONS(1214), + [anon_sym_noreturn] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym___try] = ACTIONS(1214), + [anon_sym___leave] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym___alignof__] = ACTIONS(1214), + [anon_sym___alignof] = ACTIONS(1214), + [anon_sym__alignof] = ACTIONS(1214), + [anon_sym_alignof] = ACTIONS(1214), + [anon_sym__Alignof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = ACTIONS(1214), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1216), + [anon_sym_L_SQUOTE] = ACTIONS(1216), + [anon_sym_u_SQUOTE] = ACTIONS(1216), + [anon_sym_U_SQUOTE] = ACTIONS(1216), + [anon_sym_u8_SQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_L_DQUOTE] = ACTIONS(1216), + [anon_sym_u_DQUOTE] = ACTIONS(1216), + [anon_sym_U_DQUOTE] = ACTIONS(1216), + [anon_sym_u8_DQUOTE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [anon_sym_NULL] = ACTIONS(1214), + [anon_sym_nullptr] = ACTIONS(1214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(110), + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token2] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [aux_sym_preproc_else_token1] = ACTIONS(1218), + [aux_sym_preproc_elif_token1] = ACTIONS(1218), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym___extension__] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym___inline] = ACTIONS(1218), + [anon_sym___inline__] = ACTIONS(1218), + [anon_sym___forceinline] = ACTIONS(1218), + [anon_sym_thread_local] = ACTIONS(1218), + [anon_sym___thread] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_constexpr] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_noreturn] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_else] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym___alignof__] = ACTIONS(1218), + [anon_sym___alignof] = ACTIONS(1218), + [anon_sym__alignof] = ACTIONS(1218), + [anon_sym_alignof] = ACTIONS(1218), + [anon_sym__Alignof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(111), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(112), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(113), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(114), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [aux_sym_preproc_else_token1] = ACTIONS(1138), + [aux_sym_preproc_elif_token1] = ACTIONS(1138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(115), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(116), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(117), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1168), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym___declspec] = ACTIONS(1166), + [anon_sym___cdecl] = ACTIONS(1166), + [anon_sym___clrcall] = ACTIONS(1166), + [anon_sym___stdcall] = ACTIONS(1166), + [anon_sym___fastcall] = ACTIONS(1166), + [anon_sym___thiscall] = ACTIONS(1166), + [anon_sym___vectorcall] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___inline] = ACTIONS(1166), + [anon_sym___inline__] = ACTIONS(1166), + [anon_sym___forceinline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1166), + [anon_sym___thread] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_constexpr] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym___restrict__] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym__Noreturn] = ACTIONS(1166), + [anon_sym_noreturn] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1166), + [anon_sym___except] = ACTIONS(1166), + [anon_sym___finally] = ACTIONS(1166), + [anon_sym___leave] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym___alignof__] = ACTIONS(1166), + [anon_sym___alignof] = ACTIONS(1166), + [anon_sym__alignof] = ACTIONS(1166), + [anon_sym_alignof] = ACTIONS(1166), + [anon_sym__Alignof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = ACTIONS(1166), + [anon_sym_asm] = ACTIONS(1166), + [anon_sym___asm__] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_NULL] = ACTIONS(1166), + [anon_sym_nullptr] = ACTIONS(1166), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(118), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(119), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(120), + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token2] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [aux_sym_preproc_else_token1] = ACTIONS(1222), + [aux_sym_preproc_elif_token1] = ACTIONS(1222), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym___attribute__] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), + [anon_sym___declspec] = ACTIONS(1222), + [anon_sym___cdecl] = ACTIONS(1222), + [anon_sym___clrcall] = ACTIONS(1222), + [anon_sym___stdcall] = ACTIONS(1222), + [anon_sym___fastcall] = ACTIONS(1222), + [anon_sym___thiscall] = ACTIONS(1222), + [anon_sym___vectorcall] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym___inline] = ACTIONS(1222), + [anon_sym___inline__] = ACTIONS(1222), + [anon_sym___forceinline] = ACTIONS(1222), + [anon_sym_thread_local] = ACTIONS(1222), + [anon_sym___thread] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_constexpr] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym___restrict__] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym__Noreturn] = ACTIONS(1222), + [anon_sym_noreturn] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1222), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym___alignof__] = ACTIONS(1222), + [anon_sym___alignof] = ACTIONS(1222), + [anon_sym__alignof] = ACTIONS(1222), + [anon_sym_alignof] = ACTIONS(1222), + [anon_sym__Alignof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = ACTIONS(1222), + [anon_sym_asm] = ACTIONS(1222), + [anon_sym___asm__] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_L_SQUOTE] = ACTIONS(1224), + [anon_sym_u_SQUOTE] = ACTIONS(1224), + [anon_sym_U_SQUOTE] = ACTIONS(1224), + [anon_sym_u8_SQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_L_DQUOTE] = ACTIONS(1224), + [anon_sym_u_DQUOTE] = ACTIONS(1224), + [anon_sym_U_DQUOTE] = ACTIONS(1224), + [anon_sym_u8_DQUOTE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [anon_sym_NULL] = ACTIONS(1222), + [anon_sym_nullptr] = ACTIONS(1222), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(121), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [aux_sym_preproc_else_token1] = ACTIONS(1174), + [aux_sym_preproc_elif_token1] = ACTIONS(1174), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(122), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [aux_sym_preproc_else_token1] = ACTIONS(1154), + [aux_sym_preproc_elif_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(123), + [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(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1182), + [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(1182), + [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(1182), + [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(1182), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [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(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(1184), + [sym_false] = ACTIONS(1184), + [anon_sym_NULL] = ACTIONS(1184), + [anon_sym_nullptr] = ACTIONS(1184), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(124), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token2] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [aux_sym_preproc_else_token1] = ACTIONS(1226), + [aux_sym_preproc_elif_token1] = ACTIONS(1226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym___extension__] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), + [anon_sym___declspec] = ACTIONS(1226), + [anon_sym___cdecl] = ACTIONS(1226), + [anon_sym___clrcall] = ACTIONS(1226), + [anon_sym___stdcall] = ACTIONS(1226), + [anon_sym___fastcall] = ACTIONS(1226), + [anon_sym___thiscall] = ACTIONS(1226), + [anon_sym___vectorcall] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym___inline] = ACTIONS(1226), + [anon_sym___inline__] = ACTIONS(1226), + [anon_sym___forceinline] = ACTIONS(1226), + [anon_sym_thread_local] = ACTIONS(1226), + [anon_sym___thread] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_constexpr] = ACTIONS(1226), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [anon_sym___restrict__] = ACTIONS(1226), + [anon_sym__Atomic] = ACTIONS(1226), + [anon_sym__Noreturn] = ACTIONS(1226), + [anon_sym_noreturn] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym___try] = ACTIONS(1226), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym___alignof__] = ACTIONS(1226), + [anon_sym___alignof] = ACTIONS(1226), + [anon_sym__alignof] = ACTIONS(1226), + [anon_sym_alignof] = ACTIONS(1226), + [anon_sym__Alignof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = ACTIONS(1226), + [anon_sym_asm] = ACTIONS(1226), + [anon_sym___asm__] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym_u_SQUOTE] = ACTIONS(1228), + [anon_sym_U_SQUOTE] = ACTIONS(1228), + [anon_sym_u8_SQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_u_DQUOTE] = ACTIONS(1228), + [anon_sym_U_DQUOTE] = ACTIONS(1228), + [anon_sym_u8_DQUOTE] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_NULL] = ACTIONS(1226), + [anon_sym_nullptr] = ACTIONS(1226), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(125), + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token2] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [aux_sym_preproc_else_token1] = ACTIONS(1230), + [aux_sym_preproc_elif_token1] = ACTIONS(1230), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1230), + [sym_preproc_directive] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym___extension__] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym___attribute__] = ACTIONS(1230), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), + [anon_sym___declspec] = ACTIONS(1230), + [anon_sym___cdecl] = ACTIONS(1230), + [anon_sym___clrcall] = ACTIONS(1230), + [anon_sym___stdcall] = ACTIONS(1230), + [anon_sym___fastcall] = ACTIONS(1230), + [anon_sym___thiscall] = ACTIONS(1230), + [anon_sym___vectorcall] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym___inline] = ACTIONS(1230), + [anon_sym___inline__] = ACTIONS(1230), + [anon_sym___forceinline] = ACTIONS(1230), + [anon_sym_thread_local] = ACTIONS(1230), + [anon_sym___thread] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_constexpr] = ACTIONS(1230), + [anon_sym_volatile] = ACTIONS(1230), + [anon_sym_restrict] = ACTIONS(1230), + [anon_sym___restrict__] = ACTIONS(1230), + [anon_sym__Atomic] = ACTIONS(1230), + [anon_sym__Noreturn] = ACTIONS(1230), + [anon_sym_noreturn] = ACTIONS(1230), + [sym_primitive_type] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_goto] = ACTIONS(1230), + [anon_sym___try] = ACTIONS(1230), + [anon_sym___leave] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym___alignof__] = ACTIONS(1230), + [anon_sym___alignof] = ACTIONS(1230), + [anon_sym__alignof] = ACTIONS(1230), + [anon_sym_alignof] = ACTIONS(1230), + [anon_sym__Alignof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = ACTIONS(1230), + [anon_sym_asm] = ACTIONS(1230), + [anon_sym___asm__] = ACTIONS(1230), + [sym_number_literal] = ACTIONS(1232), + [anon_sym_L_SQUOTE] = ACTIONS(1232), + [anon_sym_u_SQUOTE] = ACTIONS(1232), + [anon_sym_U_SQUOTE] = ACTIONS(1232), + [anon_sym_u8_SQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_L_DQUOTE] = ACTIONS(1232), + [anon_sym_u_DQUOTE] = ACTIONS(1232), + [anon_sym_U_DQUOTE] = ACTIONS(1232), + [anon_sym_u8_DQUOTE] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [anon_sym_NULL] = ACTIONS(1230), + [anon_sym_nullptr] = ACTIONS(1230), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(126), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token2] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [aux_sym_preproc_else_token1] = ACTIONS(1198), + [aux_sym_preproc_elif_token1] = ACTIONS(1198), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(127), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token2] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [aux_sym_preproc_else_token1] = ACTIONS(1194), + [aux_sym_preproc_elif_token1] = ACTIONS(1194), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(128), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [aux_sym_preproc_else_token1] = ACTIONS(1234), + [aux_sym_preproc_elif_token1] = ACTIONS(1234), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(129), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token2] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [aux_sym_preproc_else_token1] = ACTIONS(1238), + [aux_sym_preproc_elif_token1] = ACTIONS(1238), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(130), + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token2] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [aux_sym_preproc_else_token1] = ACTIONS(1242), + [aux_sym_preproc_elif_token1] = ACTIONS(1242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym___extension__] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym___inline] = ACTIONS(1242), + [anon_sym___inline__] = ACTIONS(1242), + [anon_sym___forceinline] = ACTIONS(1242), + [anon_sym_thread_local] = ACTIONS(1242), + [anon_sym___thread] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_constexpr] = ACTIONS(1242), + [anon_sym_volatile] = ACTIONS(1242), + [anon_sym_restrict] = ACTIONS(1242), + [anon_sym___restrict__] = ACTIONS(1242), + [anon_sym__Atomic] = ACTIONS(1242), + [anon_sym__Noreturn] = ACTIONS(1242), + [anon_sym_noreturn] = ACTIONS(1242), + [sym_primitive_type] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_goto] = ACTIONS(1242), + [anon_sym___try] = ACTIONS(1242), + [anon_sym___leave] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym___alignof__] = ACTIONS(1242), + [anon_sym___alignof] = ACTIONS(1242), + [anon_sym__alignof] = ACTIONS(1242), + [anon_sym_alignof] = ACTIONS(1242), + [anon_sym__Alignof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = ACTIONS(1242), + [anon_sym_asm] = ACTIONS(1242), + [anon_sym___asm__] = ACTIONS(1242), + [sym_number_literal] = ACTIONS(1244), + [anon_sym_L_SQUOTE] = ACTIONS(1244), + [anon_sym_u_SQUOTE] = ACTIONS(1244), + [anon_sym_U_SQUOTE] = ACTIONS(1244), + [anon_sym_u8_SQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [anon_sym_NULL] = ACTIONS(1242), + [anon_sym_nullptr] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(131), + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [aux_sym_preproc_else_token1] = ACTIONS(1246), + [aux_sym_preproc_elif_token1] = ACTIONS(1246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(132), + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [aux_sym_preproc_else_token1] = ACTIONS(1250), + [aux_sym_preproc_elif_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(133), + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [aux_sym_preproc_else_token1] = ACTIONS(1254), + [aux_sym_preproc_elif_token1] = ACTIONS(1254), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(134), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [aux_sym_preproc_else_token1] = ACTIONS(1258), + [aux_sym_preproc_elif_token1] = ACTIONS(1258), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(135), + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token2] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [aux_sym_preproc_else_token1] = ACTIONS(1262), + [aux_sym_preproc_elif_token1] = ACTIONS(1262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(136), + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token2] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [aux_sym_preproc_else_token1] = ACTIONS(1266), + [aux_sym_preproc_elif_token1] = ACTIONS(1266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(137), + [sym_identifier] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token2] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [aux_sym_preproc_else_token1] = ACTIONS(1270), + [aux_sym_preproc_elif_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(138), + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token2] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [aux_sym_preproc_else_token1] = ACTIONS(1274), + [aux_sym_preproc_elif_token1] = ACTIONS(1274), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(139), + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token2] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [aux_sym_preproc_else_token1] = ACTIONS(1278), + [aux_sym_preproc_elif_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(140), + [sym_identifier] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token2] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [aux_sym_preproc_else_token1] = ACTIONS(1282), + [aux_sym_preproc_elif_token1] = ACTIONS(1282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [sym_primitive_type] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(141), + [sym_identifier] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token2] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [aux_sym_preproc_else_token1] = ACTIONS(1286), + [aux_sym_preproc_elif_token1] = ACTIONS(1286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(142), + [sym_identifier] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token2] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [aux_sym_preproc_else_token1] = ACTIONS(1290), + [aux_sym_preproc_elif_token1] = ACTIONS(1290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(143), + [sym_identifier] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token2] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [aux_sym_preproc_else_token1] = ACTIONS(1294), + [aux_sym_preproc_elif_token1] = ACTIONS(1294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [sym_primitive_type] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(144), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(145), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(146), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(147), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(148), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(149), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(150), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(151), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(152), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(153), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(154), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(155), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(156), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [157] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(700), - [sym_call_expression] = STATE(700), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(700), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(735), - [sym_null] = STATE(700), + [sym_comment] = STATE(157), [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_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1352), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), [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_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), [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_comment] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_else_clause] = STATE(255), + [sym_comment] = STATE(158), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym___extension__] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym___inline] = ACTIONS(1104), + [anon_sym___inline__] = ACTIONS(1104), + [anon_sym___forceinline] = ACTIONS(1104), + [anon_sym_thread_local] = ACTIONS(1104), + [anon_sym___thread] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_constexpr] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_noreturn] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym___try] = ACTIONS(1104), + [anon_sym___leave] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym___alignof__] = ACTIONS(1104), + [anon_sym___alignof] = ACTIONS(1104), + [anon_sym__alignof] = ACTIONS(1104), + [anon_sym_alignof] = ACTIONS(1104), + [anon_sym__Alignof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [anon_sym_NULL] = ACTIONS(1104), + [anon_sym_nullptr] = ACTIONS(1104), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [159] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(700), - [sym_call_expression] = STATE(700), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(700), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(301), + [sym_comment] = STATE(159), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym___extension__] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym___inline] = ACTIONS(1104), + [anon_sym___inline__] = ACTIONS(1104), + [anon_sym___forceinline] = ACTIONS(1104), + [anon_sym_thread_local] = ACTIONS(1104), + [anon_sym___thread] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_constexpr] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_noreturn] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym___try] = ACTIONS(1104), + [anon_sym___leave] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym___alignof__] = ACTIONS(1104), + [anon_sym___alignof] = ACTIONS(1104), + [anon_sym__alignof] = ACTIONS(1104), + [anon_sym_alignof] = ACTIONS(1104), + [anon_sym__Alignof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [anon_sym_NULL] = ACTIONS(1104), + [anon_sym_nullptr] = ACTIONS(1104), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(730), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(730), + [sym_call_expression] = STATE(730), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(730), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(730), + [sym_initializer_list] = STATE(720), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(742), + [sym_null] = STATE(719), + [sym_comment] = STATE(160), + [sym_identifier] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1368), + [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(1358), + [anon_sym_DASH_GT] = ACTIONS(1360), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(730), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(730), + [sym_call_expression] = STATE(730), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(730), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(730), + [sym_initializer_list] = STATE(720), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(161), + [sym_identifier] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1376), + [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(1358), + [anon_sym_DASH_GT] = ACTIONS(1360), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_else_clause] = STATE(206), + [sym_comment] = STATE(162), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym___extension__] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym___inline] = ACTIONS(1104), + [anon_sym___inline__] = ACTIONS(1104), + [anon_sym___forceinline] = ACTIONS(1104), + [anon_sym_thread_local] = ACTIONS(1104), + [anon_sym___thread] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_constexpr] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_noreturn] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym___try] = ACTIONS(1104), + [anon_sym___leave] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym___alignof__] = ACTIONS(1104), + [anon_sym___alignof] = ACTIONS(1104), + [anon_sym__alignof] = ACTIONS(1104), + [anon_sym_alignof] = ACTIONS(1104), + [anon_sym__Alignof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [anon_sym_NULL] = ACTIONS(1104), + [anon_sym_nullptr] = ACTIONS(1104), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym___extension__] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym___inline] = ACTIONS(1110), + [anon_sym___inline__] = ACTIONS(1110), + [anon_sym___forceinline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym___thread] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym___try] = ACTIONS(1110), + [anon_sym___leave] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym___alignof__] = ACTIONS(1110), + [anon_sym___alignof] = ACTIONS(1110), + [anon_sym__alignof] = ACTIONS(1110), + [anon_sym_alignof] = ACTIONS(1110), + [anon_sym__Alignof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(164), + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym___extension__] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym___inline] = ACTIONS(1114), + [anon_sym___inline__] = ACTIONS(1114), + [anon_sym___forceinline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym___thread] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym___try] = ACTIONS(1114), + [anon_sym___leave] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym___alignof__] = ACTIONS(1114), + [anon_sym___alignof] = ACTIONS(1114), + [anon_sym__alignof] = ACTIONS(1114), + [anon_sym_alignof] = ACTIONS(1114), + [anon_sym__Alignof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(166), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym___declspec] = ACTIONS(1150), + [anon_sym___cdecl] = ACTIONS(1150), + [anon_sym___clrcall] = ACTIONS(1150), + [anon_sym___stdcall] = ACTIONS(1150), + [anon_sym___fastcall] = ACTIONS(1150), + [anon_sym___thiscall] = ACTIONS(1150), + [anon_sym___vectorcall] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym___inline] = ACTIONS(1150), + [anon_sym___inline__] = ACTIONS(1150), + [anon_sym___forceinline] = ACTIONS(1150), + [anon_sym_thread_local] = ACTIONS(1150), + [anon_sym___thread] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_constexpr] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym___restrict__] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym__Noreturn] = ACTIONS(1150), + [anon_sym_noreturn] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1150), + [anon_sym___leave] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym___alignof__] = ACTIONS(1150), + [anon_sym___alignof] = ACTIONS(1150), + [anon_sym__alignof] = ACTIONS(1150), + [anon_sym_alignof] = ACTIONS(1150), + [anon_sym__Alignof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1150), + [anon_sym_asm] = ACTIONS(1150), + [anon_sym___asm__] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [anon_sym_NULL] = ACTIONS(1150), + [anon_sym_nullptr] = ACTIONS(1150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(167), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), + [anon_sym___declspec] = ACTIONS(1146), + [anon_sym___cdecl] = ACTIONS(1146), + [anon_sym___clrcall] = ACTIONS(1146), + [anon_sym___stdcall] = ACTIONS(1146), + [anon_sym___fastcall] = ACTIONS(1146), + [anon_sym___thiscall] = ACTIONS(1146), + [anon_sym___vectorcall] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym___inline] = ACTIONS(1146), + [anon_sym___inline__] = ACTIONS(1146), + [anon_sym___forceinline] = ACTIONS(1146), + [anon_sym_thread_local] = ACTIONS(1146), + [anon_sym___thread] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_constexpr] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym___restrict__] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym__Noreturn] = ACTIONS(1146), + [anon_sym_noreturn] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1146), + [anon_sym___leave] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym___alignof__] = ACTIONS(1146), + [anon_sym___alignof] = ACTIONS(1146), + [anon_sym__alignof] = ACTIONS(1146), + [anon_sym_alignof] = ACTIONS(1146), + [anon_sym__Alignof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = ACTIONS(1146), + [anon_sym_asm] = ACTIONS(1146), + [anon_sym___asm__] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_nullptr] = ACTIONS(1146), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(169), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(170), + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token2] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym___extension__] = ACTIONS(1170), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), + [anon_sym___declspec] = ACTIONS(1170), + [anon_sym___cdecl] = ACTIONS(1170), + [anon_sym___clrcall] = ACTIONS(1170), + [anon_sym___stdcall] = ACTIONS(1170), + [anon_sym___fastcall] = ACTIONS(1170), + [anon_sym___thiscall] = ACTIONS(1170), + [anon_sym___vectorcall] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym___inline] = ACTIONS(1170), + [anon_sym___inline__] = ACTIONS(1170), + [anon_sym___forceinline] = ACTIONS(1170), + [anon_sym_thread_local] = ACTIONS(1170), + [anon_sym___thread] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_constexpr] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym___restrict__] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym__Noreturn] = ACTIONS(1170), + [anon_sym_noreturn] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym___try] = ACTIONS(1170), + [anon_sym___leave] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym___alignof__] = ACTIONS(1170), + [anon_sym___alignof] = ACTIONS(1170), + [anon_sym__alignof] = ACTIONS(1170), + [anon_sym_alignof] = ACTIONS(1170), + [anon_sym__Alignof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = ACTIONS(1170), + [anon_sym_asm] = ACTIONS(1170), + [anon_sym___asm__] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [anon_sym_NULL] = ACTIONS(1170), + [anon_sym_nullptr] = ACTIONS(1170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(171), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym___declspec] = ACTIONS(1166), + [anon_sym___cdecl] = ACTIONS(1166), + [anon_sym___clrcall] = ACTIONS(1166), + [anon_sym___stdcall] = ACTIONS(1166), + [anon_sym___fastcall] = ACTIONS(1166), + [anon_sym___thiscall] = ACTIONS(1166), + [anon_sym___vectorcall] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___inline] = ACTIONS(1166), + [anon_sym___inline__] = ACTIONS(1166), + [anon_sym___forceinline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1166), + [anon_sym___thread] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_constexpr] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym___restrict__] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym__Noreturn] = ACTIONS(1166), + [anon_sym_noreturn] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1166), + [anon_sym___leave] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym___alignof__] = ACTIONS(1166), + [anon_sym___alignof] = ACTIONS(1166), + [anon_sym__alignof] = ACTIONS(1166), + [anon_sym_alignof] = ACTIONS(1166), + [anon_sym__Alignof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = ACTIONS(1166), + [anon_sym_asm] = ACTIONS(1166), + [anon_sym___asm__] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_NULL] = ACTIONS(1166), + [anon_sym_nullptr] = ACTIONS(1166), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [172] = { - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(173), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [175] = { - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(175), + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token2] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym___extension__] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym___declspec] = ACTIONS(1142), + [anon_sym___cdecl] = ACTIONS(1142), + [anon_sym___clrcall] = ACTIONS(1142), + [anon_sym___stdcall] = ACTIONS(1142), + [anon_sym___fastcall] = ACTIONS(1142), + [anon_sym___thiscall] = ACTIONS(1142), + [anon_sym___vectorcall] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym___inline] = ACTIONS(1142), + [anon_sym___inline__] = ACTIONS(1142), + [anon_sym___forceinline] = ACTIONS(1142), + [anon_sym_thread_local] = ACTIONS(1142), + [anon_sym___thread] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_constexpr] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym___restrict__] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym__Noreturn] = ACTIONS(1142), + [anon_sym_noreturn] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym___try] = ACTIONS(1142), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym___alignof__] = ACTIONS(1142), + [anon_sym___alignof] = ACTIONS(1142), + [anon_sym__alignof] = ACTIONS(1142), + [anon_sym_alignof] = ACTIONS(1142), + [anon_sym__Alignof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = ACTIONS(1142), + [anon_sym_asm] = ACTIONS(1142), + [anon_sym___asm__] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [anon_sym_NULL] = ACTIONS(1142), + [anon_sym_nullptr] = ACTIONS(1142), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(176), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(177), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym___extension__] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym___inline] = ACTIONS(1114), + [anon_sym___inline__] = ACTIONS(1114), + [anon_sym___forceinline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym___thread] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym___try] = ACTIONS(1114), + [anon_sym___leave] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym___alignof__] = ACTIONS(1114), + [anon_sym___alignof] = ACTIONS(1114), + [anon_sym__alignof] = ACTIONS(1114), + [anon_sym_alignof] = ACTIONS(1114), + [anon_sym__Alignof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [178] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(178), + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym___inline] = ACTIONS(1130), + [anon_sym___inline__] = ACTIONS(1130), + [anon_sym___forceinline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym___thread] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym___try] = ACTIONS(1130), + [anon_sym___leave] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym___alignof__] = ACTIONS(1130), + [anon_sym___alignof] = ACTIONS(1130), + [anon_sym__alignof] = ACTIONS(1130), + [anon_sym_alignof] = ACTIONS(1130), + [anon_sym__Alignof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(179), + [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(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1182), + [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(1182), + [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(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [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(1182), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [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(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(1184), + [sym_false] = ACTIONS(1184), + [anon_sym_NULL] = ACTIONS(1184), + [anon_sym_nullptr] = ACTIONS(1184), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [180] = { - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(180), + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym___extension__] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym___inline] = ACTIONS(1122), + [anon_sym___inline__] = ACTIONS(1122), + [anon_sym___forceinline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym___thread] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym___try] = ACTIONS(1122), + [anon_sym___leave] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym___alignof__] = ACTIONS(1122), + [anon_sym___alignof] = ACTIONS(1122), + [anon_sym__alignof] = ACTIONS(1122), + [anon_sym_alignof] = ACTIONS(1122), + [anon_sym__Alignof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(181), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token2] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(182), + [sym_identifier] = ACTIONS(1186), + [aux_sym_preproc_include_token1] = ACTIONS(1186), + [aux_sym_preproc_def_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token2] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym___extension__] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym___attribute__] = ACTIONS(1186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), + [anon_sym___declspec] = ACTIONS(1186), + [anon_sym___cdecl] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1186), + [anon_sym___stdcall] = ACTIONS(1186), + [anon_sym___fastcall] = ACTIONS(1186), + [anon_sym___thiscall] = ACTIONS(1186), + [anon_sym___vectorcall] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym___inline] = ACTIONS(1186), + [anon_sym___inline__] = ACTIONS(1186), + [anon_sym___forceinline] = ACTIONS(1186), + [anon_sym_thread_local] = ACTIONS(1186), + [anon_sym___thread] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_constexpr] = ACTIONS(1186), + [anon_sym_volatile] = ACTIONS(1186), + [anon_sym_restrict] = ACTIONS(1186), + [anon_sym___restrict__] = ACTIONS(1186), + [anon_sym__Atomic] = ACTIONS(1186), + [anon_sym__Noreturn] = ACTIONS(1186), + [anon_sym_noreturn] = ACTIONS(1186), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym___try] = ACTIONS(1186), + [anon_sym___leave] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym___alignof__] = ACTIONS(1186), + [anon_sym___alignof] = ACTIONS(1186), + [anon_sym__alignof] = ACTIONS(1186), + [anon_sym_alignof] = ACTIONS(1186), + [anon_sym__Alignof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = ACTIONS(1186), + [anon_sym_asm] = ACTIONS(1186), + [anon_sym___asm__] = ACTIONS(1186), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(1188), + [anon_sym_u_SQUOTE] = ACTIONS(1188), + [anon_sym_U_SQUOTE] = ACTIONS(1188), + [anon_sym_u8_SQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_L_DQUOTE] = ACTIONS(1188), + [anon_sym_u_DQUOTE] = ACTIONS(1188), + [anon_sym_U_DQUOTE] = ACTIONS(1188), + [anon_sym_u8_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [anon_sym_NULL] = ACTIONS(1186), + [anon_sym_nullptr] = ACTIONS(1186), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(183), + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token2] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_LPAREN2] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), + [anon_sym___declspec] = ACTIONS(1214), + [anon_sym___cdecl] = ACTIONS(1214), + [anon_sym___clrcall] = ACTIONS(1214), + [anon_sym___stdcall] = ACTIONS(1214), + [anon_sym___fastcall] = ACTIONS(1214), + [anon_sym___thiscall] = ACTIONS(1214), + [anon_sym___vectorcall] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___inline] = ACTIONS(1214), + [anon_sym___inline__] = ACTIONS(1214), + [anon_sym___forceinline] = ACTIONS(1214), + [anon_sym_thread_local] = ACTIONS(1214), + [anon_sym___thread] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_constexpr] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym___restrict__] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym__Noreturn] = ACTIONS(1214), + [anon_sym_noreturn] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym___try] = ACTIONS(1214), + [anon_sym___leave] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym___alignof__] = ACTIONS(1214), + [anon_sym___alignof] = ACTIONS(1214), + [anon_sym__alignof] = ACTIONS(1214), + [anon_sym_alignof] = ACTIONS(1214), + [anon_sym__Alignof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = ACTIONS(1214), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1216), + [anon_sym_L_SQUOTE] = ACTIONS(1216), + [anon_sym_u_SQUOTE] = ACTIONS(1216), + [anon_sym_U_SQUOTE] = ACTIONS(1216), + [anon_sym_u8_SQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_L_DQUOTE] = ACTIONS(1216), + [anon_sym_u_DQUOTE] = ACTIONS(1216), + [anon_sym_U_DQUOTE] = ACTIONS(1216), + [anon_sym_u8_DQUOTE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [anon_sym_NULL] = ACTIONS(1214), + [anon_sym_nullptr] = ACTIONS(1214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(184), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(185), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(186), + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym___extension__] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym___declspec] = ACTIONS(1142), + [anon_sym___cdecl] = ACTIONS(1142), + [anon_sym___clrcall] = ACTIONS(1142), + [anon_sym___stdcall] = ACTIONS(1142), + [anon_sym___fastcall] = ACTIONS(1142), + [anon_sym___thiscall] = ACTIONS(1142), + [anon_sym___vectorcall] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym___inline] = ACTIONS(1142), + [anon_sym___inline__] = ACTIONS(1142), + [anon_sym___forceinline] = ACTIONS(1142), + [anon_sym_thread_local] = ACTIONS(1142), + [anon_sym___thread] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_constexpr] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym___restrict__] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym__Noreturn] = ACTIONS(1142), + [anon_sym_noreturn] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym___try] = ACTIONS(1142), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym___alignof__] = ACTIONS(1142), + [anon_sym___alignof] = ACTIONS(1142), + [anon_sym__alignof] = ACTIONS(1142), + [anon_sym_alignof] = ACTIONS(1142), + [anon_sym__Alignof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = ACTIONS(1142), + [anon_sym_asm] = ACTIONS(1142), + [anon_sym___asm__] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [anon_sym_NULL] = ACTIONS(1142), + [anon_sym_nullptr] = ACTIONS(1142), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(187), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(188), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(190), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym___attribute__] = ACTIONS(1206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), + [anon_sym___declspec] = ACTIONS(1206), + [anon_sym___cdecl] = ACTIONS(1206), + [anon_sym___clrcall] = ACTIONS(1206), + [anon_sym___stdcall] = ACTIONS(1206), + [anon_sym___fastcall] = ACTIONS(1206), + [anon_sym___thiscall] = ACTIONS(1206), + [anon_sym___vectorcall] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym___inline] = ACTIONS(1206), + [anon_sym___inline__] = ACTIONS(1206), + [anon_sym___forceinline] = ACTIONS(1206), + [anon_sym_thread_local] = ACTIONS(1206), + [anon_sym___thread] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_constexpr] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_restrict] = ACTIONS(1206), + [anon_sym___restrict__] = ACTIONS(1206), + [anon_sym__Atomic] = ACTIONS(1206), + [anon_sym__Noreturn] = ACTIONS(1206), + [anon_sym_noreturn] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_goto] = ACTIONS(1206), + [anon_sym___try] = ACTIONS(1206), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym___alignof__] = ACTIONS(1206), + [anon_sym___alignof] = ACTIONS(1206), + [anon_sym__alignof] = ACTIONS(1206), + [anon_sym_alignof] = ACTIONS(1206), + [anon_sym__Alignof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = ACTIONS(1206), + [anon_sym_asm] = ACTIONS(1206), + [anon_sym___asm__] = ACTIONS(1206), + [sym_number_literal] = ACTIONS(1208), + [anon_sym_L_SQUOTE] = ACTIONS(1208), + [anon_sym_u_SQUOTE] = ACTIONS(1208), + [anon_sym_U_SQUOTE] = ACTIONS(1208), + [anon_sym_u8_SQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_L_DQUOTE] = ACTIONS(1208), + [anon_sym_u_DQUOTE] = ACTIONS(1208), + [anon_sym_U_DQUOTE] = ACTIONS(1208), + [anon_sym_u8_DQUOTE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [anon_sym_NULL] = ACTIONS(1206), + [anon_sym_nullptr] = ACTIONS(1206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(191), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(192), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(193), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym___extension__] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym___inline] = ACTIONS(1110), + [anon_sym___inline__] = ACTIONS(1110), + [anon_sym___forceinline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym___thread] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym___try] = ACTIONS(1110), + [anon_sym___leave] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym___alignof__] = ACTIONS(1110), + [anon_sym___alignof] = ACTIONS(1110), + [anon_sym__alignof] = ACTIONS(1110), + [anon_sym_alignof] = ACTIONS(1110), + [anon_sym__Alignof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(194), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token2] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym___extension__] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), + [anon_sym___declspec] = ACTIONS(1226), + [anon_sym___cdecl] = ACTIONS(1226), + [anon_sym___clrcall] = ACTIONS(1226), + [anon_sym___stdcall] = ACTIONS(1226), + [anon_sym___fastcall] = ACTIONS(1226), + [anon_sym___thiscall] = ACTIONS(1226), + [anon_sym___vectorcall] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym___inline] = ACTIONS(1226), + [anon_sym___inline__] = ACTIONS(1226), + [anon_sym___forceinline] = ACTIONS(1226), + [anon_sym_thread_local] = ACTIONS(1226), + [anon_sym___thread] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_constexpr] = ACTIONS(1226), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [anon_sym___restrict__] = ACTIONS(1226), + [anon_sym__Atomic] = ACTIONS(1226), + [anon_sym__Noreturn] = ACTIONS(1226), + [anon_sym_noreturn] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym___try] = ACTIONS(1226), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym___alignof__] = ACTIONS(1226), + [anon_sym___alignof] = ACTIONS(1226), + [anon_sym__alignof] = ACTIONS(1226), + [anon_sym_alignof] = ACTIONS(1226), + [anon_sym__Alignof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = ACTIONS(1226), + [anon_sym_asm] = ACTIONS(1226), + [anon_sym___asm__] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym_u_SQUOTE] = ACTIONS(1228), + [anon_sym_U_SQUOTE] = ACTIONS(1228), + [anon_sym_u8_SQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_u_DQUOTE] = ACTIONS(1228), + [anon_sym_U_DQUOTE] = ACTIONS(1228), + [anon_sym_u8_DQUOTE] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_NULL] = ACTIONS(1226), + [anon_sym_nullptr] = ACTIONS(1226), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(195), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym___declspec] = ACTIONS(1150), + [anon_sym___cdecl] = ACTIONS(1150), + [anon_sym___clrcall] = ACTIONS(1150), + [anon_sym___stdcall] = ACTIONS(1150), + [anon_sym___fastcall] = ACTIONS(1150), + [anon_sym___thiscall] = ACTIONS(1150), + [anon_sym___vectorcall] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym___inline] = ACTIONS(1150), + [anon_sym___inline__] = ACTIONS(1150), + [anon_sym___forceinline] = ACTIONS(1150), + [anon_sym_thread_local] = ACTIONS(1150), + [anon_sym___thread] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_constexpr] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym___restrict__] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym__Noreturn] = ACTIONS(1150), + [anon_sym_noreturn] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1150), + [anon_sym___leave] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym___alignof__] = ACTIONS(1150), + [anon_sym___alignof] = ACTIONS(1150), + [anon_sym__alignof] = ACTIONS(1150), + [anon_sym_alignof] = ACTIONS(1150), + [anon_sym__Alignof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1150), + [anon_sym_asm] = ACTIONS(1150), + [anon_sym___asm__] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [anon_sym_NULL] = ACTIONS(1150), + [anon_sym_nullptr] = ACTIONS(1150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(196), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(198), + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym___inline] = ACTIONS(1130), + [anon_sym___inline__] = ACTIONS(1130), + [anon_sym___forceinline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym___thread] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym___try] = ACTIONS(1130), + [anon_sym___leave] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym___alignof__] = ACTIONS(1130), + [anon_sym___alignof] = ACTIONS(1130), + [anon_sym__alignof] = ACTIONS(1130), + [anon_sym_alignof] = ACTIONS(1130), + [anon_sym__Alignof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(199), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym___extension__] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym___inline] = ACTIONS(1126), + [anon_sym___inline__] = ACTIONS(1126), + [anon_sym___forceinline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym___thread] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym___try] = ACTIONS(1126), + [anon_sym___leave] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym___alignof__] = ACTIONS(1126), + [anon_sym___alignof] = ACTIONS(1126), + [anon_sym__alignof] = ACTIONS(1126), + [anon_sym_alignof] = ACTIONS(1126), + [anon_sym__Alignof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(200), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), + [anon_sym___declspec] = ACTIONS(1146), + [anon_sym___cdecl] = ACTIONS(1146), + [anon_sym___clrcall] = ACTIONS(1146), + [anon_sym___stdcall] = ACTIONS(1146), + [anon_sym___fastcall] = ACTIONS(1146), + [anon_sym___thiscall] = ACTIONS(1146), + [anon_sym___vectorcall] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym___inline] = ACTIONS(1146), + [anon_sym___inline__] = ACTIONS(1146), + [anon_sym___forceinline] = ACTIONS(1146), + [anon_sym_thread_local] = ACTIONS(1146), + [anon_sym___thread] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_constexpr] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym___restrict__] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym__Noreturn] = ACTIONS(1146), + [anon_sym_noreturn] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1146), + [anon_sym___leave] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym___alignof__] = ACTIONS(1146), + [anon_sym___alignof] = ACTIONS(1146), + [anon_sym__alignof] = ACTIONS(1146), + [anon_sym_alignof] = ACTIONS(1146), + [anon_sym__Alignof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = ACTIONS(1146), + [anon_sym_asm] = ACTIONS(1146), + [anon_sym___asm__] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_nullptr] = ACTIONS(1146), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [201] = { + [sym_comment] = STATE(201), + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(1210), + [aux_sym_preproc_def_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token2] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), + [sym_preproc_directive] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym___attribute__] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), + [anon_sym___declspec] = ACTIONS(1210), + [anon_sym___cdecl] = ACTIONS(1210), + [anon_sym___clrcall] = ACTIONS(1210), + [anon_sym___stdcall] = ACTIONS(1210), + [anon_sym___fastcall] = ACTIONS(1210), + [anon_sym___thiscall] = ACTIONS(1210), + [anon_sym___vectorcall] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym___inline] = ACTIONS(1210), + [anon_sym___inline__] = ACTIONS(1210), + [anon_sym___forceinline] = ACTIONS(1210), + [anon_sym_thread_local] = ACTIONS(1210), + [anon_sym___thread] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_constexpr] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_restrict] = ACTIONS(1210), + [anon_sym___restrict__] = ACTIONS(1210), + [anon_sym__Atomic] = ACTIONS(1210), + [anon_sym__Noreturn] = ACTIONS(1210), + [anon_sym_noreturn] = ACTIONS(1210), + [sym_primitive_type] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_goto] = ACTIONS(1210), + [anon_sym___try] = ACTIONS(1210), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym___alignof__] = ACTIONS(1210), + [anon_sym___alignof] = ACTIONS(1210), + [anon_sym__alignof] = ACTIONS(1210), + [anon_sym_alignof] = ACTIONS(1210), + [anon_sym__Alignof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [202] = { + [sym_comment] = STATE(202), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [203] = { + [sym_comment] = STATE(203), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym___extension__] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym___declspec] = ACTIONS(1134), + [anon_sym___cdecl] = ACTIONS(1134), + [anon_sym___clrcall] = ACTIONS(1134), + [anon_sym___stdcall] = ACTIONS(1134), + [anon_sym___fastcall] = ACTIONS(1134), + [anon_sym___thiscall] = ACTIONS(1134), + [anon_sym___vectorcall] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym___inline] = ACTIONS(1134), + [anon_sym___inline__] = ACTIONS(1134), + [anon_sym___forceinline] = ACTIONS(1134), + [anon_sym_thread_local] = ACTIONS(1134), + [anon_sym___thread] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_constexpr] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym___restrict__] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym__Noreturn] = ACTIONS(1134), + [anon_sym_noreturn] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym___try] = ACTIONS(1134), + [anon_sym___leave] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym___alignof__] = ACTIONS(1134), + [anon_sym___alignof] = ACTIONS(1134), + [anon_sym__alignof] = ACTIONS(1134), + [anon_sym_alignof] = ACTIONS(1134), + [anon_sym__Alignof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = ACTIONS(1134), + [anon_sym_asm] = ACTIONS(1134), + [anon_sym___asm__] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [anon_sym_NULL] = ACTIONS(1134), + [anon_sym_nullptr] = ACTIONS(1134), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [204] = { + [sym_comment] = STATE(204), + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token2] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym___extension__] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym___inline] = ACTIONS(1114), + [anon_sym___inline__] = ACTIONS(1114), + [anon_sym___forceinline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym___thread] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym___try] = ACTIONS(1114), + [anon_sym___leave] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym___alignof__] = ACTIONS(1114), + [anon_sym___alignof] = ACTIONS(1114), + [anon_sym__alignof] = ACTIONS(1114), + [anon_sym_alignof] = ACTIONS(1114), + [anon_sym__Alignof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [205] = { + [sym_comment] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [206] = { + [sym_comment] = STATE(206), + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token2] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym___attribute__] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), + [anon_sym___declspec] = ACTIONS(1222), + [anon_sym___cdecl] = ACTIONS(1222), + [anon_sym___clrcall] = ACTIONS(1222), + [anon_sym___stdcall] = ACTIONS(1222), + [anon_sym___fastcall] = ACTIONS(1222), + [anon_sym___thiscall] = ACTIONS(1222), + [anon_sym___vectorcall] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym___inline] = ACTIONS(1222), + [anon_sym___inline__] = ACTIONS(1222), + [anon_sym___forceinline] = ACTIONS(1222), + [anon_sym_thread_local] = ACTIONS(1222), + [anon_sym___thread] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_constexpr] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym___restrict__] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym__Noreturn] = ACTIONS(1222), + [anon_sym_noreturn] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1222), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym___alignof__] = ACTIONS(1222), + [anon_sym___alignof] = ACTIONS(1222), + [anon_sym__alignof] = ACTIONS(1222), + [anon_sym_alignof] = ACTIONS(1222), + [anon_sym__Alignof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = ACTIONS(1222), + [anon_sym_asm] = ACTIONS(1222), + [anon_sym___asm__] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_L_SQUOTE] = ACTIONS(1224), + [anon_sym_u_SQUOTE] = ACTIONS(1224), + [anon_sym_U_SQUOTE] = ACTIONS(1224), + [anon_sym_u8_SQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_L_DQUOTE] = ACTIONS(1224), + [anon_sym_u_DQUOTE] = ACTIONS(1224), + [anon_sym_U_DQUOTE] = ACTIONS(1224), + [anon_sym_u8_DQUOTE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [anon_sym_NULL] = ACTIONS(1222), + [anon_sym_nullptr] = ACTIONS(1222), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [207] = { + [sym_comment] = STATE(207), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [208] = { + [sym_comment] = STATE(208), [sym_identifier] = ACTIONS(1184), [aux_sym_preproc_include_token1] = ACTIONS(1184), [aux_sym_preproc_def_token1] = ACTIONS(1184), @@ -39581,19 +40829,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1182), [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_STAR] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1182), [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_LBRACK_LBRACK] = ACTIONS(1182), [anon_sym___declspec] = ACTIONS(1184), [anon_sym___cdecl] = ACTIONS(1184), [anon_sym___clrcall] = ACTIONS(1184), @@ -39601,7 +40849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1184), [anon_sym___thiscall] = ACTIONS(1184), [anon_sym___vectorcall] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1182), [anon_sym_signed] = ACTIONS(1184), [anon_sym_unsigned] = ACTIONS(1184), [anon_sym_long] = ACTIONS(1184), @@ -39641,8 +40889,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(1182), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), [anon_sym_sizeof] = ACTIONS(1184), [anon_sym___alignof__] = ACTIONS(1184), [anon_sym___alignof] = ACTIONS(1184), @@ -39653,10899 +40901,10823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(1184), [sym_false] = ACTIONS(1184), [anon_sym_NULL] = ACTIONS(1184), [anon_sym_nullptr] = ACTIONS(1184), - [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), - [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_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_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_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), - [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), - [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), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(209), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym___extension__] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym___inline] = ACTIONS(1218), + [anon_sym___inline__] = ACTIONS(1218), + [anon_sym___forceinline] = ACTIONS(1218), + [anon_sym_thread_local] = ACTIONS(1218), + [anon_sym___thread] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_constexpr] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_noreturn] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_else] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym___alignof__] = ACTIONS(1218), + [anon_sym___alignof] = ACTIONS(1218), + [anon_sym__alignof] = ACTIONS(1218), + [anon_sym_alignof] = ACTIONS(1218), + [anon_sym__Alignof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(211), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(212), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(213), + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token2] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym___attribute__] = ACTIONS(1206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), + [anon_sym___declspec] = ACTIONS(1206), + [anon_sym___cdecl] = ACTIONS(1206), + [anon_sym___clrcall] = ACTIONS(1206), + [anon_sym___stdcall] = ACTIONS(1206), + [anon_sym___fastcall] = ACTIONS(1206), + [anon_sym___thiscall] = ACTIONS(1206), + [anon_sym___vectorcall] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym___inline] = ACTIONS(1206), + [anon_sym___inline__] = ACTIONS(1206), + [anon_sym___forceinline] = ACTIONS(1206), + [anon_sym_thread_local] = ACTIONS(1206), + [anon_sym___thread] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_constexpr] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_restrict] = ACTIONS(1206), + [anon_sym___restrict__] = ACTIONS(1206), + [anon_sym__Atomic] = ACTIONS(1206), + [anon_sym__Noreturn] = ACTIONS(1206), + [anon_sym_noreturn] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_goto] = ACTIONS(1206), + [anon_sym___try] = ACTIONS(1206), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym___alignof__] = ACTIONS(1206), + [anon_sym___alignof] = ACTIONS(1206), + [anon_sym__alignof] = ACTIONS(1206), + [anon_sym_alignof] = ACTIONS(1206), + [anon_sym__Alignof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = ACTIONS(1206), + [anon_sym_asm] = ACTIONS(1206), + [anon_sym___asm__] = ACTIONS(1206), + [sym_number_literal] = ACTIONS(1208), + [anon_sym_L_SQUOTE] = ACTIONS(1208), + [anon_sym_u_SQUOTE] = ACTIONS(1208), + [anon_sym_U_SQUOTE] = ACTIONS(1208), + [anon_sym_u8_SQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_L_DQUOTE] = ACTIONS(1208), + [anon_sym_u_DQUOTE] = ACTIONS(1208), + [anon_sym_U_DQUOTE] = ACTIONS(1208), + [anon_sym_u8_DQUOTE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [anon_sym_NULL] = ACTIONS(1206), + [anon_sym_nullptr] = ACTIONS(1206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(214), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(215), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(216), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym___extension__] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym___inline] = ACTIONS(1126), + [anon_sym___inline__] = ACTIONS(1126), + [anon_sym___forceinline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym___thread] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym___try] = ACTIONS(1126), + [anon_sym___leave] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym___alignof__] = ACTIONS(1126), + [anon_sym___alignof] = ACTIONS(1126), + [anon_sym__alignof] = ACTIONS(1126), + [anon_sym_alignof] = ACTIONS(1126), + [anon_sym__Alignof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(217), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(218), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(219), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [sym_preproc_directive] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym___extension__] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym___attribute__] = ACTIONS(1230), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), + [anon_sym___declspec] = ACTIONS(1230), + [anon_sym___cdecl] = ACTIONS(1230), + [anon_sym___clrcall] = ACTIONS(1230), + [anon_sym___stdcall] = ACTIONS(1230), + [anon_sym___fastcall] = ACTIONS(1230), + [anon_sym___thiscall] = ACTIONS(1230), + [anon_sym___vectorcall] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym___inline] = ACTIONS(1230), + [anon_sym___inline__] = ACTIONS(1230), + [anon_sym___forceinline] = ACTIONS(1230), + [anon_sym_thread_local] = ACTIONS(1230), + [anon_sym___thread] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_constexpr] = ACTIONS(1230), + [anon_sym_volatile] = ACTIONS(1230), + [anon_sym_restrict] = ACTIONS(1230), + [anon_sym___restrict__] = ACTIONS(1230), + [anon_sym__Atomic] = ACTIONS(1230), + [anon_sym__Noreturn] = ACTIONS(1230), + [anon_sym_noreturn] = ACTIONS(1230), + [sym_primitive_type] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_goto] = ACTIONS(1230), + [anon_sym___try] = ACTIONS(1230), + [anon_sym___leave] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym___alignof__] = ACTIONS(1230), + [anon_sym___alignof] = ACTIONS(1230), + [anon_sym__alignof] = ACTIONS(1230), + [anon_sym_alignof] = ACTIONS(1230), + [anon_sym__Alignof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = ACTIONS(1230), + [anon_sym_asm] = ACTIONS(1230), + [anon_sym___asm__] = ACTIONS(1230), + [sym_number_literal] = ACTIONS(1232), + [anon_sym_L_SQUOTE] = ACTIONS(1232), + [anon_sym_u_SQUOTE] = ACTIONS(1232), + [anon_sym_U_SQUOTE] = ACTIONS(1232), + [anon_sym_u8_SQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_L_DQUOTE] = ACTIONS(1232), + [anon_sym_u_DQUOTE] = ACTIONS(1232), + [anon_sym_U_DQUOTE] = ACTIONS(1232), + [anon_sym_u8_DQUOTE] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [anon_sym_NULL] = ACTIONS(1230), + [anon_sym_nullptr] = ACTIONS(1230), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(223), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(224), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(225), + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym___extension__] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym___inline] = ACTIONS(1118), + [anon_sym___inline__] = ACTIONS(1118), + [anon_sym___forceinline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym___thread] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym___try] = ACTIONS(1118), + [anon_sym___leave] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym___alignof__] = ACTIONS(1118), + [anon_sym___alignof] = ACTIONS(1118), + [anon_sym__alignof] = ACTIONS(1118), + [anon_sym_alignof] = ACTIONS(1118), + [anon_sym__Alignof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(226), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym___inline] = ACTIONS(1190), + [anon_sym___inline__] = ACTIONS(1190), + [anon_sym___forceinline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym___thread] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym___alignof__] = ACTIONS(1190), + [anon_sym___alignof] = ACTIONS(1190), + [anon_sym__alignof] = ACTIONS(1190), + [anon_sym_alignof] = ACTIONS(1190), + [anon_sym__Alignof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(227), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(228), + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token2] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym___extension__] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym___inline] = ACTIONS(1118), + [anon_sym___inline__] = ACTIONS(1118), + [anon_sym___forceinline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym___thread] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym___try] = ACTIONS(1118), + [anon_sym___leave] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym___alignof__] = ACTIONS(1118), + [anon_sym___alignof] = ACTIONS(1118), + [anon_sym__alignof] = ACTIONS(1118), + [anon_sym_alignof] = ACTIONS(1118), + [anon_sym__Alignof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(229), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym___extension__] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), + [anon_sym___declspec] = ACTIONS(1226), + [anon_sym___cdecl] = ACTIONS(1226), + [anon_sym___clrcall] = ACTIONS(1226), + [anon_sym___stdcall] = ACTIONS(1226), + [anon_sym___fastcall] = ACTIONS(1226), + [anon_sym___thiscall] = ACTIONS(1226), + [anon_sym___vectorcall] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym___inline] = ACTIONS(1226), + [anon_sym___inline__] = ACTIONS(1226), + [anon_sym___forceinline] = ACTIONS(1226), + [anon_sym_thread_local] = ACTIONS(1226), + [anon_sym___thread] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_constexpr] = ACTIONS(1226), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [anon_sym___restrict__] = ACTIONS(1226), + [anon_sym__Atomic] = ACTIONS(1226), + [anon_sym__Noreturn] = ACTIONS(1226), + [anon_sym_noreturn] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym___try] = ACTIONS(1226), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym___alignof__] = ACTIONS(1226), + [anon_sym___alignof] = ACTIONS(1226), + [anon_sym__alignof] = ACTIONS(1226), + [anon_sym_alignof] = ACTIONS(1226), + [anon_sym__Alignof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = ACTIONS(1226), + [anon_sym_asm] = ACTIONS(1226), + [anon_sym___asm__] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym_u_SQUOTE] = ACTIONS(1228), + [anon_sym_U_SQUOTE] = ACTIONS(1228), + [anon_sym_u8_SQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_u_DQUOTE] = ACTIONS(1228), + [anon_sym_U_DQUOTE] = ACTIONS(1228), + [anon_sym_u8_DQUOTE] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_NULL] = ACTIONS(1226), + [anon_sym_nullptr] = ACTIONS(1226), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(230), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym___inline] = ACTIONS(1190), + [anon_sym___inline__] = ACTIONS(1190), + [anon_sym___forceinline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym___thread] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym___alignof__] = ACTIONS(1190), + [anon_sym___alignof] = ACTIONS(1190), + [anon_sym__alignof] = ACTIONS(1190), + [anon_sym_alignof] = ACTIONS(1190), + [anon_sym__Alignof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(231), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(232), + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym___extension__] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym___inline] = ACTIONS(1122), + [anon_sym___inline__] = ACTIONS(1122), + [anon_sym___forceinline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym___thread] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym___try] = ACTIONS(1122), + [anon_sym___leave] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym___alignof__] = ACTIONS(1122), + [anon_sym___alignof] = ACTIONS(1122), + [anon_sym__alignof] = ACTIONS(1122), + [anon_sym_alignof] = ACTIONS(1122), + [anon_sym__Alignof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(233), + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token2] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym___extension__] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym___inline] = ACTIONS(1218), + [anon_sym___inline__] = ACTIONS(1218), + [anon_sym___forceinline] = ACTIONS(1218), + [anon_sym_thread_local] = ACTIONS(1218), + [anon_sym___thread] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_constexpr] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_noreturn] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_else] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym___alignof__] = ACTIONS(1218), + [anon_sym___alignof] = ACTIONS(1218), + [anon_sym__alignof] = ACTIONS(1218), + [anon_sym_alignof] = ACTIONS(1218), + [anon_sym__Alignof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(234), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token2] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(235), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token2] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(236), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(237), + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym___extension__] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(1218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), + [anon_sym___declspec] = ACTIONS(1218), + [anon_sym___cdecl] = ACTIONS(1218), + [anon_sym___clrcall] = ACTIONS(1218), + [anon_sym___stdcall] = ACTIONS(1218), + [anon_sym___fastcall] = ACTIONS(1218), + [anon_sym___thiscall] = ACTIONS(1218), + [anon_sym___vectorcall] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym___inline] = ACTIONS(1218), + [anon_sym___inline__] = ACTIONS(1218), + [anon_sym___forceinline] = ACTIONS(1218), + [anon_sym_thread_local] = ACTIONS(1218), + [anon_sym___thread] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_constexpr] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_restrict] = ACTIONS(1218), + [anon_sym___restrict__] = ACTIONS(1218), + [anon_sym__Atomic] = ACTIONS(1218), + [anon_sym__Noreturn] = ACTIONS(1218), + [anon_sym_noreturn] = ACTIONS(1218), + [sym_primitive_type] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_else] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_goto] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym___alignof__] = ACTIONS(1218), + [anon_sym___alignof] = ACTIONS(1218), + [anon_sym__alignof] = ACTIONS(1218), + [anon_sym_alignof] = ACTIONS(1218), + [anon_sym__Alignof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(238), + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token2] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [sym_preproc_directive] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym___extension__] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym___attribute__] = ACTIONS(1230), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), + [anon_sym___declspec] = ACTIONS(1230), + [anon_sym___cdecl] = ACTIONS(1230), + [anon_sym___clrcall] = ACTIONS(1230), + [anon_sym___stdcall] = ACTIONS(1230), + [anon_sym___fastcall] = ACTIONS(1230), + [anon_sym___thiscall] = ACTIONS(1230), + [anon_sym___vectorcall] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym___inline] = ACTIONS(1230), + [anon_sym___inline__] = ACTIONS(1230), + [anon_sym___forceinline] = ACTIONS(1230), + [anon_sym_thread_local] = ACTIONS(1230), + [anon_sym___thread] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_constexpr] = ACTIONS(1230), + [anon_sym_volatile] = ACTIONS(1230), + [anon_sym_restrict] = ACTIONS(1230), + [anon_sym___restrict__] = ACTIONS(1230), + [anon_sym__Atomic] = ACTIONS(1230), + [anon_sym__Noreturn] = ACTIONS(1230), + [anon_sym_noreturn] = ACTIONS(1230), + [sym_primitive_type] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_goto] = ACTIONS(1230), + [anon_sym___try] = ACTIONS(1230), + [anon_sym___leave] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym___alignof__] = ACTIONS(1230), + [anon_sym___alignof] = ACTIONS(1230), + [anon_sym__alignof] = ACTIONS(1230), + [anon_sym_alignof] = ACTIONS(1230), + [anon_sym__Alignof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = ACTIONS(1230), + [anon_sym_asm] = ACTIONS(1230), + [anon_sym___asm__] = ACTIONS(1230), + [sym_number_literal] = ACTIONS(1232), + [anon_sym_L_SQUOTE] = ACTIONS(1232), + [anon_sym_u_SQUOTE] = ACTIONS(1232), + [anon_sym_U_SQUOTE] = ACTIONS(1232), + [anon_sym_u8_SQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_L_DQUOTE] = ACTIONS(1232), + [anon_sym_u_DQUOTE] = ACTIONS(1232), + [anon_sym_U_DQUOTE] = ACTIONS(1232), + [anon_sym_u8_DQUOTE] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [anon_sym_NULL] = ACTIONS(1230), + [anon_sym_nullptr] = ACTIONS(1230), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(239), + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token2] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym___extension__] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym___declspec] = ACTIONS(1134), + [anon_sym___cdecl] = ACTIONS(1134), + [anon_sym___clrcall] = ACTIONS(1134), + [anon_sym___stdcall] = ACTIONS(1134), + [anon_sym___fastcall] = ACTIONS(1134), + [anon_sym___thiscall] = ACTIONS(1134), + [anon_sym___vectorcall] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym___inline] = ACTIONS(1134), + [anon_sym___inline__] = ACTIONS(1134), + [anon_sym___forceinline] = ACTIONS(1134), + [anon_sym_thread_local] = ACTIONS(1134), + [anon_sym___thread] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_constexpr] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym___restrict__] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym__Noreturn] = ACTIONS(1134), + [anon_sym_noreturn] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym___try] = ACTIONS(1134), + [anon_sym___leave] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym___alignof__] = ACTIONS(1134), + [anon_sym___alignof] = ACTIONS(1134), + [anon_sym__alignof] = ACTIONS(1134), + [anon_sym_alignof] = ACTIONS(1134), + [anon_sym__Alignof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = ACTIONS(1134), + [anon_sym_asm] = ACTIONS(1134), + [anon_sym___asm__] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [anon_sym_NULL] = ACTIONS(1134), + [anon_sym_nullptr] = ACTIONS(1134), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(241), + [sym_identifier] = ACTIONS(1186), + [aux_sym_preproc_include_token1] = ACTIONS(1186), + [aux_sym_preproc_def_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym___extension__] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym___attribute__] = ACTIONS(1186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), + [anon_sym___declspec] = ACTIONS(1186), + [anon_sym___cdecl] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1186), + [anon_sym___stdcall] = ACTIONS(1186), + [anon_sym___fastcall] = ACTIONS(1186), + [anon_sym___thiscall] = ACTIONS(1186), + [anon_sym___vectorcall] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym___inline] = ACTIONS(1186), + [anon_sym___inline__] = ACTIONS(1186), + [anon_sym___forceinline] = ACTIONS(1186), + [anon_sym_thread_local] = ACTIONS(1186), + [anon_sym___thread] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_constexpr] = ACTIONS(1186), + [anon_sym_volatile] = ACTIONS(1186), + [anon_sym_restrict] = ACTIONS(1186), + [anon_sym___restrict__] = ACTIONS(1186), + [anon_sym__Atomic] = ACTIONS(1186), + [anon_sym__Noreturn] = ACTIONS(1186), + [anon_sym_noreturn] = ACTIONS(1186), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym___try] = ACTIONS(1186), + [anon_sym___leave] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym___alignof__] = ACTIONS(1186), + [anon_sym___alignof] = ACTIONS(1186), + [anon_sym__alignof] = ACTIONS(1186), + [anon_sym_alignof] = ACTIONS(1186), + [anon_sym__Alignof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = ACTIONS(1186), + [anon_sym_asm] = ACTIONS(1186), + [anon_sym___asm__] = ACTIONS(1186), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(1188), + [anon_sym_u_SQUOTE] = ACTIONS(1188), + [anon_sym_U_SQUOTE] = ACTIONS(1188), + [anon_sym_u8_SQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_L_DQUOTE] = ACTIONS(1188), + [anon_sym_u_DQUOTE] = ACTIONS(1188), + [anon_sym_U_DQUOTE] = ACTIONS(1188), + [anon_sym_u8_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [anon_sym_NULL] = ACTIONS(1186), + [anon_sym_nullptr] = ACTIONS(1186), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(242), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token2] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), + [anon_sym___declspec] = ACTIONS(1146), + [anon_sym___cdecl] = ACTIONS(1146), + [anon_sym___clrcall] = ACTIONS(1146), + [anon_sym___stdcall] = ACTIONS(1146), + [anon_sym___fastcall] = ACTIONS(1146), + [anon_sym___thiscall] = ACTIONS(1146), + [anon_sym___vectorcall] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym___inline] = ACTIONS(1146), + [anon_sym___inline__] = ACTIONS(1146), + [anon_sym___forceinline] = ACTIONS(1146), + [anon_sym_thread_local] = ACTIONS(1146), + [anon_sym___thread] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_constexpr] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym___restrict__] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym__Noreturn] = ACTIONS(1146), + [anon_sym_noreturn] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1146), + [anon_sym___leave] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym___alignof__] = ACTIONS(1146), + [anon_sym___alignof] = ACTIONS(1146), + [anon_sym__alignof] = ACTIONS(1146), + [anon_sym_alignof] = ACTIONS(1146), + [anon_sym__Alignof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = ACTIONS(1146), + [anon_sym_asm] = ACTIONS(1146), + [anon_sym___asm__] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_nullptr] = ACTIONS(1146), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(243), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(244), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token2] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), + [anon_sym___declspec] = ACTIONS(1150), + [anon_sym___cdecl] = ACTIONS(1150), + [anon_sym___clrcall] = ACTIONS(1150), + [anon_sym___stdcall] = ACTIONS(1150), + [anon_sym___fastcall] = ACTIONS(1150), + [anon_sym___thiscall] = ACTIONS(1150), + [anon_sym___vectorcall] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym___inline] = ACTIONS(1150), + [anon_sym___inline__] = ACTIONS(1150), + [anon_sym___forceinline] = ACTIONS(1150), + [anon_sym_thread_local] = ACTIONS(1150), + [anon_sym___thread] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_constexpr] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym___restrict__] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym__Noreturn] = ACTIONS(1150), + [anon_sym_noreturn] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1150), + [anon_sym___leave] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym___alignof__] = ACTIONS(1150), + [anon_sym___alignof] = ACTIONS(1150), + [anon_sym__alignof] = ACTIONS(1150), + [anon_sym_alignof] = ACTIONS(1150), + [anon_sym__Alignof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1150), + [anon_sym_asm] = ACTIONS(1150), + [anon_sym___asm__] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [anon_sym_NULL] = ACTIONS(1150), + [anon_sym_nullptr] = ACTIONS(1150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(245), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(246), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token2] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(247), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(248), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym___extension__] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), + [anon_sym___declspec] = ACTIONS(1226), + [anon_sym___cdecl] = ACTIONS(1226), + [anon_sym___clrcall] = ACTIONS(1226), + [anon_sym___stdcall] = ACTIONS(1226), + [anon_sym___fastcall] = ACTIONS(1226), + [anon_sym___thiscall] = ACTIONS(1226), + [anon_sym___vectorcall] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym___inline] = ACTIONS(1226), + [anon_sym___inline__] = ACTIONS(1226), + [anon_sym___forceinline] = ACTIONS(1226), + [anon_sym_thread_local] = ACTIONS(1226), + [anon_sym___thread] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_constexpr] = ACTIONS(1226), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [anon_sym___restrict__] = ACTIONS(1226), + [anon_sym__Atomic] = ACTIONS(1226), + [anon_sym__Noreturn] = ACTIONS(1226), + [anon_sym_noreturn] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym___try] = ACTIONS(1226), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym___alignof__] = ACTIONS(1226), + [anon_sym___alignof] = ACTIONS(1226), + [anon_sym__alignof] = ACTIONS(1226), + [anon_sym_alignof] = ACTIONS(1226), + [anon_sym__Alignof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = ACTIONS(1226), + [anon_sym_asm] = ACTIONS(1226), + [anon_sym___asm__] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym_u_SQUOTE] = ACTIONS(1228), + [anon_sym_U_SQUOTE] = ACTIONS(1228), + [anon_sym_u8_SQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_u_DQUOTE] = ACTIONS(1228), + [anon_sym_U_DQUOTE] = ACTIONS(1228), + [anon_sym_u8_DQUOTE] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_NULL] = ACTIONS(1226), + [anon_sym_nullptr] = ACTIONS(1226), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(249), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(250), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token2] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(251), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym___extension__] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(1158), + [anon_sym___cdecl] = ACTIONS(1158), + [anon_sym___clrcall] = ACTIONS(1158), + [anon_sym___stdcall] = ACTIONS(1158), + [anon_sym___fastcall] = ACTIONS(1158), + [anon_sym___thiscall] = ACTIONS(1158), + [anon_sym___vectorcall] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___inline] = ACTIONS(1158), + [anon_sym___inline__] = ACTIONS(1158), + [anon_sym___forceinline] = ACTIONS(1158), + [anon_sym_thread_local] = ACTIONS(1158), + [anon_sym___thread] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_constexpr] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym___restrict__] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym__Noreturn] = ACTIONS(1158), + [anon_sym_noreturn] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1158), + [anon_sym___leave] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym___alignof__] = ACTIONS(1158), + [anon_sym___alignof] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1158), + [anon_sym_alignof] = ACTIONS(1158), + [anon_sym__Alignof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = ACTIONS(1158), + [anon_sym_asm] = ACTIONS(1158), + [anon_sym___asm__] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_NULL] = ACTIONS(1158), + [anon_sym_nullptr] = ACTIONS(1158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(252), + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), + [anon_sym___declspec] = ACTIONS(1162), + [anon_sym___cdecl] = ACTIONS(1162), + [anon_sym___clrcall] = ACTIONS(1162), + [anon_sym___stdcall] = ACTIONS(1162), + [anon_sym___fastcall] = ACTIONS(1162), + [anon_sym___thiscall] = ACTIONS(1162), + [anon_sym___vectorcall] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym___inline] = ACTIONS(1162), + [anon_sym___inline__] = ACTIONS(1162), + [anon_sym___forceinline] = ACTIONS(1162), + [anon_sym_thread_local] = ACTIONS(1162), + [anon_sym___thread] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_constexpr] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym___restrict__] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym__Noreturn] = ACTIONS(1162), + [anon_sym_noreturn] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1162), + [anon_sym___leave] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym___alignof__] = ACTIONS(1162), + [anon_sym___alignof] = ACTIONS(1162), + [anon_sym__alignof] = ACTIONS(1162), + [anon_sym_alignof] = ACTIONS(1162), + [anon_sym__Alignof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = ACTIONS(1162), + [anon_sym_asm] = ACTIONS(1162), + [anon_sym___asm__] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [anon_sym_NULL] = ACTIONS(1162), + [anon_sym_nullptr] = ACTIONS(1162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(253), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(254), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(255), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym___attribute__] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), + [anon_sym___declspec] = ACTIONS(1222), + [anon_sym___cdecl] = ACTIONS(1222), + [anon_sym___clrcall] = ACTIONS(1222), + [anon_sym___stdcall] = ACTIONS(1222), + [anon_sym___fastcall] = ACTIONS(1222), + [anon_sym___thiscall] = ACTIONS(1222), + [anon_sym___vectorcall] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym___inline] = ACTIONS(1222), + [anon_sym___inline__] = ACTIONS(1222), + [anon_sym___forceinline] = ACTIONS(1222), + [anon_sym_thread_local] = ACTIONS(1222), + [anon_sym___thread] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_constexpr] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym___restrict__] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym__Noreturn] = ACTIONS(1222), + [anon_sym_noreturn] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1222), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym___alignof__] = ACTIONS(1222), + [anon_sym___alignof] = ACTIONS(1222), + [anon_sym__alignof] = ACTIONS(1222), + [anon_sym_alignof] = ACTIONS(1222), + [anon_sym__Alignof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = ACTIONS(1222), + [anon_sym_asm] = ACTIONS(1222), + [anon_sym___asm__] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_L_SQUOTE] = ACTIONS(1224), + [anon_sym_u_SQUOTE] = ACTIONS(1224), + [anon_sym_U_SQUOTE] = ACTIONS(1224), + [anon_sym_u8_SQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_L_DQUOTE] = ACTIONS(1224), + [anon_sym_u_DQUOTE] = ACTIONS(1224), + [anon_sym_U_DQUOTE] = ACTIONS(1224), + [anon_sym_u8_DQUOTE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [anon_sym_NULL] = ACTIONS(1222), + [anon_sym_nullptr] = ACTIONS(1222), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(256), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(257), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(258), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(259), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(260), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(261), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(262), + [sym_identifier] = ACTIONS(1194), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [aux_sym_preproc_if_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), + [sym_preproc_directive] = ACTIONS(1194), + [anon_sym_LPAREN2] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym___attribute__] = ACTIONS(1194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), + [anon_sym___declspec] = ACTIONS(1194), + [anon_sym___cdecl] = ACTIONS(1194), + [anon_sym___clrcall] = ACTIONS(1194), + [anon_sym___stdcall] = ACTIONS(1194), + [anon_sym___fastcall] = ACTIONS(1194), + [anon_sym___thiscall] = ACTIONS(1194), + [anon_sym___vectorcall] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym___inline] = ACTIONS(1194), + [anon_sym___inline__] = ACTIONS(1194), + [anon_sym___forceinline] = ACTIONS(1194), + [anon_sym_thread_local] = ACTIONS(1194), + [anon_sym___thread] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_constexpr] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_restrict] = ACTIONS(1194), + [anon_sym___restrict__] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1194), + [anon_sym__Noreturn] = ACTIONS(1194), + [anon_sym_noreturn] = ACTIONS(1194), + [sym_primitive_type] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_goto] = ACTIONS(1194), + [anon_sym___try] = ACTIONS(1194), + [anon_sym___leave] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym___alignof__] = ACTIONS(1194), + [anon_sym___alignof] = ACTIONS(1194), + [anon_sym__alignof] = ACTIONS(1194), + [anon_sym_alignof] = ACTIONS(1194), + [anon_sym__Alignof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = ACTIONS(1194), + [anon_sym_asm] = ACTIONS(1194), + [anon_sym___asm__] = ACTIONS(1194), + [sym_number_literal] = ACTIONS(1196), + [anon_sym_L_SQUOTE] = ACTIONS(1196), + [anon_sym_u_SQUOTE] = ACTIONS(1196), + [anon_sym_U_SQUOTE] = ACTIONS(1196), + [anon_sym_u8_SQUOTE] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_L_DQUOTE] = ACTIONS(1196), + [anon_sym_u_DQUOTE] = ACTIONS(1196), + [anon_sym_U_DQUOTE] = ACTIONS(1196), + [anon_sym_u8_DQUOTE] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [anon_sym_NULL] = ACTIONS(1194), + [anon_sym_nullptr] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(263), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(264), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym___extension__] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym___declspec] = ACTIONS(1138), + [anon_sym___cdecl] = ACTIONS(1138), + [anon_sym___clrcall] = ACTIONS(1138), + [anon_sym___stdcall] = ACTIONS(1138), + [anon_sym___fastcall] = ACTIONS(1138), + [anon_sym___thiscall] = ACTIONS(1138), + [anon_sym___vectorcall] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym___inline] = ACTIONS(1138), + [anon_sym___inline__] = ACTIONS(1138), + [anon_sym___forceinline] = ACTIONS(1138), + [anon_sym_thread_local] = ACTIONS(1138), + [anon_sym___thread] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_constexpr] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym___restrict__] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym__Noreturn] = ACTIONS(1138), + [anon_sym_noreturn] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym___alignof__] = ACTIONS(1138), + [anon_sym___alignof] = ACTIONS(1138), + [anon_sym__alignof] = ACTIONS(1138), + [anon_sym_alignof] = ACTIONS(1138), + [anon_sym__Alignof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(1138), + [anon_sym_asm] = ACTIONS(1138), + [anon_sym___asm__] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(265), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(266), + [sym_identifier] = ACTIONS(1178), + [aux_sym_preproc_include_token1] = ACTIONS(1178), + [aux_sym_preproc_def_token1] = ACTIONS(1178), + [aux_sym_preproc_if_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), + [sym_preproc_directive] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym___extension__] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), + [anon_sym___declspec] = ACTIONS(1178), + [anon_sym___cdecl] = ACTIONS(1178), + [anon_sym___clrcall] = ACTIONS(1178), + [anon_sym___stdcall] = ACTIONS(1178), + [anon_sym___fastcall] = ACTIONS(1178), + [anon_sym___thiscall] = ACTIONS(1178), + [anon_sym___vectorcall] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym___inline] = ACTIONS(1178), + [anon_sym___inline__] = ACTIONS(1178), + [anon_sym___forceinline] = ACTIONS(1178), + [anon_sym_thread_local] = ACTIONS(1178), + [anon_sym___thread] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_constexpr] = ACTIONS(1178), + [anon_sym_volatile] = ACTIONS(1178), + [anon_sym_restrict] = ACTIONS(1178), + [anon_sym___restrict__] = ACTIONS(1178), + [anon_sym__Atomic] = ACTIONS(1178), + [anon_sym__Noreturn] = ACTIONS(1178), + [anon_sym_noreturn] = ACTIONS(1178), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_goto] = ACTIONS(1178), + [anon_sym___try] = ACTIONS(1178), + [anon_sym___leave] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym___alignof__] = ACTIONS(1178), + [anon_sym___alignof] = ACTIONS(1178), + [anon_sym__alignof] = ACTIONS(1178), + [anon_sym_alignof] = ACTIONS(1178), + [anon_sym__Alignof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = ACTIONS(1178), + [anon_sym_asm] = ACTIONS(1178), + [anon_sym___asm__] = ACTIONS(1178), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(1180), + [anon_sym_u_SQUOTE] = ACTIONS(1180), + [anon_sym_U_SQUOTE] = ACTIONS(1180), + [anon_sym_u8_SQUOTE] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_L_DQUOTE] = ACTIONS(1180), + [anon_sym_u_DQUOTE] = ACTIONS(1180), + [anon_sym_U_DQUOTE] = ACTIONS(1180), + [anon_sym_u8_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_true] = ACTIONS(1178), + [sym_false] = ACTIONS(1178), + [anon_sym_NULL] = ACTIONS(1178), + [anon_sym_nullptr] = ACTIONS(1178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(267), + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym___extension__] = ACTIONS(1170), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), + [anon_sym___declspec] = ACTIONS(1170), + [anon_sym___cdecl] = ACTIONS(1170), + [anon_sym___clrcall] = ACTIONS(1170), + [anon_sym___stdcall] = ACTIONS(1170), + [anon_sym___fastcall] = ACTIONS(1170), + [anon_sym___thiscall] = ACTIONS(1170), + [anon_sym___vectorcall] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym___inline] = ACTIONS(1170), + [anon_sym___inline__] = ACTIONS(1170), + [anon_sym___forceinline] = ACTIONS(1170), + [anon_sym_thread_local] = ACTIONS(1170), + [anon_sym___thread] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_constexpr] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym___restrict__] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym__Noreturn] = ACTIONS(1170), + [anon_sym_noreturn] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym___try] = ACTIONS(1170), + [anon_sym___leave] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym___alignof__] = ACTIONS(1170), + [anon_sym___alignof] = ACTIONS(1170), + [anon_sym__alignof] = ACTIONS(1170), + [anon_sym_alignof] = ACTIONS(1170), + [anon_sym__Alignof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = ACTIONS(1170), + [anon_sym_asm] = ACTIONS(1170), + [anon_sym___asm__] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [anon_sym_NULL] = ACTIONS(1170), + [anon_sym_nullptr] = ACTIONS(1170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(268), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(269), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(270), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(271), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(272), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(273), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(274), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym___inline] = ACTIONS(1190), + [anon_sym___inline__] = ACTIONS(1190), + [anon_sym___forceinline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym___thread] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym___alignof__] = ACTIONS(1190), + [anon_sym___alignof] = ACTIONS(1190), + [anon_sym__alignof] = ACTIONS(1190), + [anon_sym_alignof] = ACTIONS(1190), + [anon_sym__Alignof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(275), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym___try] = ACTIONS(1234), + [anon_sym___leave] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(276), + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(1210), + [aux_sym_preproc_def_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), + [sym_preproc_directive] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym___attribute__] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), + [anon_sym___declspec] = ACTIONS(1210), + [anon_sym___cdecl] = ACTIONS(1210), + [anon_sym___clrcall] = ACTIONS(1210), + [anon_sym___stdcall] = ACTIONS(1210), + [anon_sym___fastcall] = ACTIONS(1210), + [anon_sym___thiscall] = ACTIONS(1210), + [anon_sym___vectorcall] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym___inline] = ACTIONS(1210), + [anon_sym___inline__] = ACTIONS(1210), + [anon_sym___forceinline] = ACTIONS(1210), + [anon_sym_thread_local] = ACTIONS(1210), + [anon_sym___thread] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_constexpr] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_restrict] = ACTIONS(1210), + [anon_sym___restrict__] = ACTIONS(1210), + [anon_sym__Atomic] = ACTIONS(1210), + [anon_sym__Noreturn] = ACTIONS(1210), + [anon_sym_noreturn] = ACTIONS(1210), + [sym_primitive_type] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_goto] = ACTIONS(1210), + [anon_sym___try] = ACTIONS(1210), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym___alignof__] = ACTIONS(1210), + [anon_sym___alignof] = ACTIONS(1210), + [anon_sym__alignof] = ACTIONS(1210), + [anon_sym_alignof] = ACTIONS(1210), + [anon_sym__Alignof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(277), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(278), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(279), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(280), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(281), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(282), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(283), + [sym_identifier] = ACTIONS(1198), + [aux_sym_preproc_include_token1] = ACTIONS(1198), + [aux_sym_preproc_def_token1] = ACTIONS(1198), + [aux_sym_preproc_if_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), + [sym_preproc_directive] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym___extension__] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), + [anon_sym___declspec] = ACTIONS(1198), + [anon_sym___cdecl] = ACTIONS(1198), + [anon_sym___clrcall] = ACTIONS(1198), + [anon_sym___stdcall] = ACTIONS(1198), + [anon_sym___fastcall] = ACTIONS(1198), + [anon_sym___thiscall] = ACTIONS(1198), + [anon_sym___vectorcall] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___inline] = ACTIONS(1198), + [anon_sym___inline__] = ACTIONS(1198), + [anon_sym___forceinline] = ACTIONS(1198), + [anon_sym_thread_local] = ACTIONS(1198), + [anon_sym___thread] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_constexpr] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_restrict] = ACTIONS(1198), + [anon_sym___restrict__] = ACTIONS(1198), + [anon_sym__Atomic] = ACTIONS(1198), + [anon_sym__Noreturn] = ACTIONS(1198), + [anon_sym_noreturn] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_goto] = ACTIONS(1198), + [anon_sym___try] = ACTIONS(1198), + [anon_sym___leave] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym___alignof__] = ACTIONS(1198), + [anon_sym___alignof] = ACTIONS(1198), + [anon_sym__alignof] = ACTIONS(1198), + [anon_sym_alignof] = ACTIONS(1198), + [anon_sym__Alignof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = ACTIONS(1198), + [anon_sym_asm] = ACTIONS(1198), + [anon_sym___asm__] = ACTIONS(1198), + [sym_number_literal] = ACTIONS(1200), + [anon_sym_L_SQUOTE] = ACTIONS(1200), + [anon_sym_u_SQUOTE] = ACTIONS(1200), + [anon_sym_U_SQUOTE] = ACTIONS(1200), + [anon_sym_u8_SQUOTE] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_L_DQUOTE] = ACTIONS(1200), + [anon_sym_u_DQUOTE] = ACTIONS(1200), + [anon_sym_U_DQUOTE] = ACTIONS(1200), + [anon_sym_u8_DQUOTE] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_true] = ACTIONS(1198), + [sym_false] = ACTIONS(1198), + [anon_sym_NULL] = ACTIONS(1198), + [anon_sym_nullptr] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(284), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym___extension__] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym___declspec] = ACTIONS(1166), + [anon_sym___cdecl] = ACTIONS(1166), + [anon_sym___clrcall] = ACTIONS(1166), + [anon_sym___stdcall] = ACTIONS(1166), + [anon_sym___fastcall] = ACTIONS(1166), + [anon_sym___thiscall] = ACTIONS(1166), + [anon_sym___vectorcall] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___inline] = ACTIONS(1166), + [anon_sym___inline__] = ACTIONS(1166), + [anon_sym___forceinline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1166), + [anon_sym___thread] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_constexpr] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym___restrict__] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym__Noreturn] = ACTIONS(1166), + [anon_sym_noreturn] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1166), + [anon_sym___leave] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym___alignof__] = ACTIONS(1166), + [anon_sym___alignof] = ACTIONS(1166), + [anon_sym__alignof] = ACTIONS(1166), + [anon_sym_alignof] = ACTIONS(1166), + [anon_sym__Alignof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = ACTIONS(1166), + [anon_sym_asm] = ACTIONS(1166), + [anon_sym___asm__] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_NULL] = ACTIONS(1166), + [anon_sym_nullptr] = ACTIONS(1166), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(285), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(286), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_LPAREN2] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), + [anon_sym___declspec] = ACTIONS(1214), + [anon_sym___cdecl] = ACTIONS(1214), + [anon_sym___clrcall] = ACTIONS(1214), + [anon_sym___stdcall] = ACTIONS(1214), + [anon_sym___fastcall] = ACTIONS(1214), + [anon_sym___thiscall] = ACTIONS(1214), + [anon_sym___vectorcall] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___inline] = ACTIONS(1214), + [anon_sym___inline__] = ACTIONS(1214), + [anon_sym___forceinline] = ACTIONS(1214), + [anon_sym_thread_local] = ACTIONS(1214), + [anon_sym___thread] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_constexpr] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym___restrict__] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym__Noreturn] = ACTIONS(1214), + [anon_sym_noreturn] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym___try] = ACTIONS(1214), + [anon_sym___leave] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym___alignof__] = ACTIONS(1214), + [anon_sym___alignof] = ACTIONS(1214), + [anon_sym__alignof] = ACTIONS(1214), + [anon_sym_alignof] = ACTIONS(1214), + [anon_sym__Alignof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = ACTIONS(1214), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1216), + [anon_sym_L_SQUOTE] = ACTIONS(1216), + [anon_sym_u_SQUOTE] = ACTIONS(1216), + [anon_sym_U_SQUOTE] = ACTIONS(1216), + [anon_sym_u8_SQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_L_DQUOTE] = ACTIONS(1216), + [anon_sym_u_DQUOTE] = ACTIONS(1216), + [anon_sym_U_DQUOTE] = ACTIONS(1216), + [anon_sym_u8_DQUOTE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [anon_sym_NULL] = ACTIONS(1214), + [anon_sym_nullptr] = ACTIONS(1214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(288), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(289), + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym___extension__] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), + [anon_sym___declspec] = ACTIONS(1134), + [anon_sym___cdecl] = ACTIONS(1134), + [anon_sym___clrcall] = ACTIONS(1134), + [anon_sym___stdcall] = ACTIONS(1134), + [anon_sym___fastcall] = ACTIONS(1134), + [anon_sym___thiscall] = ACTIONS(1134), + [anon_sym___vectorcall] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym___inline] = ACTIONS(1134), + [anon_sym___inline__] = ACTIONS(1134), + [anon_sym___forceinline] = ACTIONS(1134), + [anon_sym_thread_local] = ACTIONS(1134), + [anon_sym___thread] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_constexpr] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym___restrict__] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym__Noreturn] = ACTIONS(1134), + [anon_sym_noreturn] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym___try] = ACTIONS(1134), + [anon_sym___leave] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym___alignof__] = ACTIONS(1134), + [anon_sym___alignof] = ACTIONS(1134), + [anon_sym__alignof] = ACTIONS(1134), + [anon_sym_alignof] = ACTIONS(1134), + [anon_sym__Alignof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = ACTIONS(1134), + [anon_sym_asm] = ACTIONS(1134), + [anon_sym___asm__] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [anon_sym_NULL] = ACTIONS(1134), + [anon_sym_nullptr] = ACTIONS(1134), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(290), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(291), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym___extension__] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym___inline] = ACTIONS(1126), + [anon_sym___inline__] = ACTIONS(1126), + [anon_sym___forceinline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym___thread] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym___try] = ACTIONS(1126), + [anon_sym___leave] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym___alignof__] = ACTIONS(1126), + [anon_sym___alignof] = ACTIONS(1126), + [anon_sym__alignof] = ACTIONS(1126), + [anon_sym_alignof] = ACTIONS(1126), + [anon_sym__Alignof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(292), + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_LPAREN2] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), + [anon_sym___declspec] = ACTIONS(1214), + [anon_sym___cdecl] = ACTIONS(1214), + [anon_sym___clrcall] = ACTIONS(1214), + [anon_sym___stdcall] = ACTIONS(1214), + [anon_sym___fastcall] = ACTIONS(1214), + [anon_sym___thiscall] = ACTIONS(1214), + [anon_sym___vectorcall] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___inline] = ACTIONS(1214), + [anon_sym___inline__] = ACTIONS(1214), + [anon_sym___forceinline] = ACTIONS(1214), + [anon_sym_thread_local] = ACTIONS(1214), + [anon_sym___thread] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_constexpr] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym___restrict__] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym__Noreturn] = ACTIONS(1214), + [anon_sym_noreturn] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym___try] = ACTIONS(1214), + [anon_sym___leave] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym___alignof__] = ACTIONS(1214), + [anon_sym___alignof] = ACTIONS(1214), + [anon_sym__alignof] = ACTIONS(1214), + [anon_sym_alignof] = ACTIONS(1214), + [anon_sym__Alignof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = ACTIONS(1214), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1216), + [anon_sym_L_SQUOTE] = ACTIONS(1216), + [anon_sym_u_SQUOTE] = ACTIONS(1216), + [anon_sym_U_SQUOTE] = ACTIONS(1216), + [anon_sym_u8_SQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_L_DQUOTE] = ACTIONS(1216), + [anon_sym_u_DQUOTE] = ACTIONS(1216), + [anon_sym_U_DQUOTE] = ACTIONS(1216), + [anon_sym_u8_DQUOTE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [anon_sym_NULL] = ACTIONS(1214), + [anon_sym_nullptr] = ACTIONS(1214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), + [anon_sym___declspec] = ACTIONS(1162), + [anon_sym___cdecl] = ACTIONS(1162), + [anon_sym___clrcall] = ACTIONS(1162), + [anon_sym___stdcall] = ACTIONS(1162), + [anon_sym___fastcall] = ACTIONS(1162), + [anon_sym___thiscall] = ACTIONS(1162), + [anon_sym___vectorcall] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym___inline] = ACTIONS(1162), + [anon_sym___inline__] = ACTIONS(1162), + [anon_sym___forceinline] = ACTIONS(1162), + [anon_sym_thread_local] = ACTIONS(1162), + [anon_sym___thread] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_constexpr] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym___restrict__] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym__Noreturn] = ACTIONS(1162), + [anon_sym_noreturn] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1162), + [anon_sym___leave] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym___alignof__] = ACTIONS(1162), + [anon_sym___alignof] = ACTIONS(1162), + [anon_sym__alignof] = ACTIONS(1162), + [anon_sym_alignof] = ACTIONS(1162), + [anon_sym__Alignof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = ACTIONS(1162), + [anon_sym_asm] = ACTIONS(1162), + [anon_sym___asm__] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [anon_sym_NULL] = ACTIONS(1162), + [anon_sym_nullptr] = ACTIONS(1162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(294), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym___extension__] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), + [anon_sym___declspec] = ACTIONS(1174), + [anon_sym___cdecl] = ACTIONS(1174), + [anon_sym___clrcall] = ACTIONS(1174), + [anon_sym___stdcall] = ACTIONS(1174), + [anon_sym___fastcall] = ACTIONS(1174), + [anon_sym___thiscall] = ACTIONS(1174), + [anon_sym___vectorcall] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___inline] = ACTIONS(1174), + [anon_sym___inline__] = ACTIONS(1174), + [anon_sym___forceinline] = ACTIONS(1174), + [anon_sym_thread_local] = ACTIONS(1174), + [anon_sym___thread] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_constexpr] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym___restrict__] = ACTIONS(1174), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym__Noreturn] = ACTIONS(1174), + [anon_sym_noreturn] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [anon_sym___try] = ACTIONS(1174), + [anon_sym___leave] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym___alignof__] = ACTIONS(1174), + [anon_sym___alignof] = ACTIONS(1174), + [anon_sym__alignof] = ACTIONS(1174), + [anon_sym_alignof] = ACTIONS(1174), + [anon_sym__Alignof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = ACTIONS(1174), + [anon_sym_asm] = ACTIONS(1174), + [anon_sym___asm__] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1176), + [anon_sym_L_SQUOTE] = ACTIONS(1176), + [anon_sym_u_SQUOTE] = ACTIONS(1176), + [anon_sym_U_SQUOTE] = ACTIONS(1176), + [anon_sym_u8_SQUOTE] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_L_DQUOTE] = ACTIONS(1176), + [anon_sym_u_DQUOTE] = ACTIONS(1176), + [anon_sym_U_DQUOTE] = ACTIONS(1176), + [anon_sym_u8_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [anon_sym_NULL] = ACTIONS(1174), + [anon_sym_nullptr] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(295), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym___extension__] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym___inline] = ACTIONS(1110), + [anon_sym___inline__] = ACTIONS(1110), + [anon_sym___forceinline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym___thread] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym___try] = ACTIONS(1110), + [anon_sym___leave] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym___alignof__] = ACTIONS(1110), + [anon_sym___alignof] = ACTIONS(1110), + [anon_sym__alignof] = ACTIONS(1110), + [anon_sym_alignof] = ACTIONS(1110), + [anon_sym__Alignof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(296), + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token2] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), + [anon_sym___declspec] = ACTIONS(1162), + [anon_sym___cdecl] = ACTIONS(1162), + [anon_sym___clrcall] = ACTIONS(1162), + [anon_sym___stdcall] = ACTIONS(1162), + [anon_sym___fastcall] = ACTIONS(1162), + [anon_sym___thiscall] = ACTIONS(1162), + [anon_sym___vectorcall] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym___inline] = ACTIONS(1162), + [anon_sym___inline__] = ACTIONS(1162), + [anon_sym___forceinline] = ACTIONS(1162), + [anon_sym_thread_local] = ACTIONS(1162), + [anon_sym___thread] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_constexpr] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym___restrict__] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym__Noreturn] = ACTIONS(1162), + [anon_sym_noreturn] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1162), + [anon_sym___leave] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym___alignof__] = ACTIONS(1162), + [anon_sym___alignof] = ACTIONS(1162), + [anon_sym__alignof] = ACTIONS(1162), + [anon_sym_alignof] = ACTIONS(1162), + [anon_sym__Alignof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = ACTIONS(1162), + [anon_sym_asm] = ACTIONS(1162), + [anon_sym___asm__] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [anon_sym_NULL] = ACTIONS(1162), + [anon_sym_nullptr] = ACTIONS(1162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(297), + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym___extension__] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(1158), + [anon_sym___cdecl] = ACTIONS(1158), + [anon_sym___clrcall] = ACTIONS(1158), + [anon_sym___stdcall] = ACTIONS(1158), + [anon_sym___fastcall] = ACTIONS(1158), + [anon_sym___thiscall] = ACTIONS(1158), + [anon_sym___vectorcall] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___inline] = ACTIONS(1158), + [anon_sym___inline__] = ACTIONS(1158), + [anon_sym___forceinline] = ACTIONS(1158), + [anon_sym_thread_local] = ACTIONS(1158), + [anon_sym___thread] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_constexpr] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym___restrict__] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym__Noreturn] = ACTIONS(1158), + [anon_sym_noreturn] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1158), + [anon_sym___leave] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym___alignof__] = ACTIONS(1158), + [anon_sym___alignof] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1158), + [anon_sym_alignof] = ACTIONS(1158), + [anon_sym__Alignof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = ACTIONS(1158), + [anon_sym_asm] = ACTIONS(1158), + [anon_sym___asm__] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_NULL] = ACTIONS(1158), + [anon_sym_nullptr] = ACTIONS(1158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(298), + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym___extension__] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(1158), + [anon_sym___cdecl] = ACTIONS(1158), + [anon_sym___clrcall] = ACTIONS(1158), + [anon_sym___stdcall] = ACTIONS(1158), + [anon_sym___fastcall] = ACTIONS(1158), + [anon_sym___thiscall] = ACTIONS(1158), + [anon_sym___vectorcall] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___inline] = ACTIONS(1158), + [anon_sym___inline__] = ACTIONS(1158), + [anon_sym___forceinline] = ACTIONS(1158), + [anon_sym_thread_local] = ACTIONS(1158), + [anon_sym___thread] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_constexpr] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym___restrict__] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym__Noreturn] = ACTIONS(1158), + [anon_sym_noreturn] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1158), + [anon_sym___leave] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym___alignof__] = ACTIONS(1158), + [anon_sym___alignof] = ACTIONS(1158), + [anon_sym__alignof] = ACTIONS(1158), + [anon_sym_alignof] = ACTIONS(1158), + [anon_sym__Alignof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = ACTIONS(1158), + [anon_sym_asm] = ACTIONS(1158), + [anon_sym___asm__] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_NULL] = ACTIONS(1158), + [anon_sym_nullptr] = ACTIONS(1158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(299), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(300), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(301), + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym___attribute__] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), + [anon_sym___declspec] = ACTIONS(1222), + [anon_sym___cdecl] = ACTIONS(1222), + [anon_sym___clrcall] = ACTIONS(1222), + [anon_sym___stdcall] = ACTIONS(1222), + [anon_sym___fastcall] = ACTIONS(1222), + [anon_sym___thiscall] = ACTIONS(1222), + [anon_sym___vectorcall] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym___inline] = ACTIONS(1222), + [anon_sym___inline__] = ACTIONS(1222), + [anon_sym___forceinline] = ACTIONS(1222), + [anon_sym_thread_local] = ACTIONS(1222), + [anon_sym___thread] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_constexpr] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym___restrict__] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym__Noreturn] = ACTIONS(1222), + [anon_sym_noreturn] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1222), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym___alignof__] = ACTIONS(1222), + [anon_sym___alignof] = ACTIONS(1222), + [anon_sym__alignof] = ACTIONS(1222), + [anon_sym_alignof] = ACTIONS(1222), + [anon_sym__Alignof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = ACTIONS(1222), + [anon_sym_asm] = ACTIONS(1222), + [anon_sym___asm__] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_L_SQUOTE] = ACTIONS(1224), + [anon_sym_u_SQUOTE] = ACTIONS(1224), + [anon_sym_U_SQUOTE] = ACTIONS(1224), + [anon_sym_u8_SQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_L_DQUOTE] = ACTIONS(1224), + [anon_sym_u_DQUOTE] = ACTIONS(1224), + [anon_sym_U_DQUOTE] = ACTIONS(1224), + [anon_sym_u8_DQUOTE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [anon_sym_NULL] = ACTIONS(1222), + [anon_sym_nullptr] = ACTIONS(1222), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym___extension__] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym___declspec] = ACTIONS(1142), + [anon_sym___cdecl] = ACTIONS(1142), + [anon_sym___clrcall] = ACTIONS(1142), + [anon_sym___stdcall] = ACTIONS(1142), + [anon_sym___fastcall] = ACTIONS(1142), + [anon_sym___thiscall] = ACTIONS(1142), + [anon_sym___vectorcall] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym___inline] = ACTIONS(1142), + [anon_sym___inline__] = ACTIONS(1142), + [anon_sym___forceinline] = ACTIONS(1142), + [anon_sym_thread_local] = ACTIONS(1142), + [anon_sym___thread] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_constexpr] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym___restrict__] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym__Noreturn] = ACTIONS(1142), + [anon_sym_noreturn] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym___try] = ACTIONS(1142), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym___alignof__] = ACTIONS(1142), + [anon_sym___alignof] = ACTIONS(1142), + [anon_sym__alignof] = ACTIONS(1142), + [anon_sym_alignof] = ACTIONS(1142), + [anon_sym__Alignof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = ACTIONS(1142), + [anon_sym_asm] = ACTIONS(1142), + [anon_sym___asm__] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [anon_sym_NULL] = ACTIONS(1142), + [anon_sym_nullptr] = ACTIONS(1142), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(303), + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym___attribute__] = ACTIONS(1206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), + [anon_sym___declspec] = ACTIONS(1206), + [anon_sym___cdecl] = ACTIONS(1206), + [anon_sym___clrcall] = ACTIONS(1206), + [anon_sym___stdcall] = ACTIONS(1206), + [anon_sym___fastcall] = ACTIONS(1206), + [anon_sym___thiscall] = ACTIONS(1206), + [anon_sym___vectorcall] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym___inline] = ACTIONS(1206), + [anon_sym___inline__] = ACTIONS(1206), + [anon_sym___forceinline] = ACTIONS(1206), + [anon_sym_thread_local] = ACTIONS(1206), + [anon_sym___thread] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_constexpr] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_restrict] = ACTIONS(1206), + [anon_sym___restrict__] = ACTIONS(1206), + [anon_sym__Atomic] = ACTIONS(1206), + [anon_sym__Noreturn] = ACTIONS(1206), + [anon_sym_noreturn] = ACTIONS(1206), + [sym_primitive_type] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_goto] = ACTIONS(1206), + [anon_sym___try] = ACTIONS(1206), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym___alignof__] = ACTIONS(1206), + [anon_sym___alignof] = ACTIONS(1206), + [anon_sym__alignof] = ACTIONS(1206), + [anon_sym_alignof] = ACTIONS(1206), + [anon_sym__Alignof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = ACTIONS(1206), + [anon_sym_asm] = ACTIONS(1206), + [anon_sym___asm__] = ACTIONS(1206), + [sym_number_literal] = ACTIONS(1208), + [anon_sym_L_SQUOTE] = ACTIONS(1208), + [anon_sym_u_SQUOTE] = ACTIONS(1208), + [anon_sym_U_SQUOTE] = ACTIONS(1208), + [anon_sym_u8_SQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_L_DQUOTE] = ACTIONS(1208), + [anon_sym_u_DQUOTE] = ACTIONS(1208), + [anon_sym_U_DQUOTE] = ACTIONS(1208), + [anon_sym_u8_DQUOTE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [anon_sym_NULL] = ACTIONS(1206), + [anon_sym_nullptr] = ACTIONS(1206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(304), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym___inline] = ACTIONS(1130), + [anon_sym___inline__] = ACTIONS(1130), + [anon_sym___forceinline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym___thread] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym___try] = ACTIONS(1130), + [anon_sym___leave] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym___alignof__] = ACTIONS(1130), + [anon_sym___alignof] = ACTIONS(1130), + [anon_sym__alignof] = ACTIONS(1130), + [anon_sym_alignof] = ACTIONS(1130), + [anon_sym__Alignof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(305), + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [sym_preproc_directive] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym___extension__] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym___attribute__] = ACTIONS(1230), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), + [anon_sym___declspec] = ACTIONS(1230), + [anon_sym___cdecl] = ACTIONS(1230), + [anon_sym___clrcall] = ACTIONS(1230), + [anon_sym___stdcall] = ACTIONS(1230), + [anon_sym___fastcall] = ACTIONS(1230), + [anon_sym___thiscall] = ACTIONS(1230), + [anon_sym___vectorcall] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym___inline] = ACTIONS(1230), + [anon_sym___inline__] = ACTIONS(1230), + [anon_sym___forceinline] = ACTIONS(1230), + [anon_sym_thread_local] = ACTIONS(1230), + [anon_sym___thread] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_constexpr] = ACTIONS(1230), + [anon_sym_volatile] = ACTIONS(1230), + [anon_sym_restrict] = ACTIONS(1230), + [anon_sym___restrict__] = ACTIONS(1230), + [anon_sym__Atomic] = ACTIONS(1230), + [anon_sym__Noreturn] = ACTIONS(1230), + [anon_sym_noreturn] = ACTIONS(1230), + [sym_primitive_type] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_goto] = ACTIONS(1230), + [anon_sym___try] = ACTIONS(1230), + [anon_sym___leave] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym___alignof__] = ACTIONS(1230), + [anon_sym___alignof] = ACTIONS(1230), + [anon_sym__alignof] = ACTIONS(1230), + [anon_sym_alignof] = ACTIONS(1230), + [anon_sym__Alignof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = ACTIONS(1230), + [anon_sym_asm] = ACTIONS(1230), + [anon_sym___asm__] = ACTIONS(1230), + [sym_number_literal] = ACTIONS(1232), + [anon_sym_L_SQUOTE] = ACTIONS(1232), + [anon_sym_u_SQUOTE] = ACTIONS(1232), + [anon_sym_U_SQUOTE] = ACTIONS(1232), + [anon_sym_u8_SQUOTE] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_L_DQUOTE] = ACTIONS(1232), + [anon_sym_u_DQUOTE] = ACTIONS(1232), + [anon_sym_U_DQUOTE] = ACTIONS(1232), + [anon_sym_u8_DQUOTE] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [anon_sym_NULL] = ACTIONS(1230), + [anon_sym_nullptr] = ACTIONS(1230), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym___extension__] = ACTIONS(1170), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), + [anon_sym___declspec] = ACTIONS(1170), + [anon_sym___cdecl] = ACTIONS(1170), + [anon_sym___clrcall] = ACTIONS(1170), + [anon_sym___stdcall] = ACTIONS(1170), + [anon_sym___fastcall] = ACTIONS(1170), + [anon_sym___thiscall] = ACTIONS(1170), + [anon_sym___vectorcall] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym___inline] = ACTIONS(1170), + [anon_sym___inline__] = ACTIONS(1170), + [anon_sym___forceinline] = ACTIONS(1170), + [anon_sym_thread_local] = ACTIONS(1170), + [anon_sym___thread] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_constexpr] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym___restrict__] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym__Noreturn] = ACTIONS(1170), + [anon_sym_noreturn] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym___try] = ACTIONS(1170), + [anon_sym___leave] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym___alignof__] = ACTIONS(1170), + [anon_sym___alignof] = ACTIONS(1170), + [anon_sym__alignof] = ACTIONS(1170), + [anon_sym_alignof] = ACTIONS(1170), + [anon_sym__Alignof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = ACTIONS(1170), + [anon_sym_asm] = ACTIONS(1170), + [anon_sym___asm__] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [anon_sym_NULL] = ACTIONS(1170), + [anon_sym_nullptr] = ACTIONS(1170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym___extension__] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym___inline] = ACTIONS(1122), + [anon_sym___inline__] = ACTIONS(1122), + [anon_sym___forceinline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym___thread] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym___try] = ACTIONS(1122), + [anon_sym___leave] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym___alignof__] = ACTIONS(1122), + [anon_sym___alignof] = ACTIONS(1122), + [anon_sym__alignof] = ACTIONS(1122), + [anon_sym_alignof] = ACTIONS(1122), + [anon_sym__Alignof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(308), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym___extension__] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym___inline] = ACTIONS(1118), + [anon_sym___inline__] = ACTIONS(1118), + [anon_sym___forceinline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym___thread] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym___try] = ACTIONS(1118), + [anon_sym___leave] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym___alignof__] = ACTIONS(1118), + [anon_sym___alignof] = ACTIONS(1118), + [anon_sym__alignof] = ACTIONS(1118), + [anon_sym_alignof] = ACTIONS(1118), + [anon_sym__Alignof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(1210), + [aux_sym_preproc_def_token1] = ACTIONS(1210), + [aux_sym_preproc_if_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), + [sym_preproc_directive] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym___attribute__] = ACTIONS(1210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), + [anon_sym___declspec] = ACTIONS(1210), + [anon_sym___cdecl] = ACTIONS(1210), + [anon_sym___clrcall] = ACTIONS(1210), + [anon_sym___stdcall] = ACTIONS(1210), + [anon_sym___fastcall] = ACTIONS(1210), + [anon_sym___thiscall] = ACTIONS(1210), + [anon_sym___vectorcall] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym___inline] = ACTIONS(1210), + [anon_sym___inline__] = ACTIONS(1210), + [anon_sym___forceinline] = ACTIONS(1210), + [anon_sym_thread_local] = ACTIONS(1210), + [anon_sym___thread] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_constexpr] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_restrict] = ACTIONS(1210), + [anon_sym___restrict__] = ACTIONS(1210), + [anon_sym__Atomic] = ACTIONS(1210), + [anon_sym__Noreturn] = ACTIONS(1210), + [anon_sym_noreturn] = ACTIONS(1210), + [sym_primitive_type] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_goto] = ACTIONS(1210), + [anon_sym___try] = ACTIONS(1210), + [anon_sym___leave] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym___alignof__] = ACTIONS(1210), + [anon_sym___alignof] = ACTIONS(1210), + [anon_sym__alignof] = ACTIONS(1210), + [anon_sym_alignof] = ACTIONS(1210), + [anon_sym__Alignof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1186), + [aux_sym_preproc_include_token1] = ACTIONS(1186), + [aux_sym_preproc_def_token1] = ACTIONS(1186), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym___extension__] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym___attribute__] = ACTIONS(1186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), + [anon_sym___declspec] = ACTIONS(1186), + [anon_sym___cdecl] = ACTIONS(1186), + [anon_sym___clrcall] = ACTIONS(1186), + [anon_sym___stdcall] = ACTIONS(1186), + [anon_sym___fastcall] = ACTIONS(1186), + [anon_sym___thiscall] = ACTIONS(1186), + [anon_sym___vectorcall] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym___inline] = ACTIONS(1186), + [anon_sym___inline__] = ACTIONS(1186), + [anon_sym___forceinline] = ACTIONS(1186), + [anon_sym_thread_local] = ACTIONS(1186), + [anon_sym___thread] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_constexpr] = ACTIONS(1186), + [anon_sym_volatile] = ACTIONS(1186), + [anon_sym_restrict] = ACTIONS(1186), + [anon_sym___restrict__] = ACTIONS(1186), + [anon_sym__Atomic] = ACTIONS(1186), + [anon_sym__Noreturn] = ACTIONS(1186), + [anon_sym_noreturn] = ACTIONS(1186), + [sym_primitive_type] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym___try] = ACTIONS(1186), + [anon_sym___leave] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym___alignof__] = ACTIONS(1186), + [anon_sym___alignof] = ACTIONS(1186), + [anon_sym__alignof] = ACTIONS(1186), + [anon_sym_alignof] = ACTIONS(1186), + [anon_sym__Alignof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = ACTIONS(1186), + [anon_sym_asm] = ACTIONS(1186), + [anon_sym___asm__] = ACTIONS(1186), + [sym_number_literal] = ACTIONS(1188), + [anon_sym_L_SQUOTE] = ACTIONS(1188), + [anon_sym_u_SQUOTE] = ACTIONS(1188), + [anon_sym_U_SQUOTE] = ACTIONS(1188), + [anon_sym_u8_SQUOTE] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_L_DQUOTE] = ACTIONS(1188), + [anon_sym_u_DQUOTE] = ACTIONS(1188), + [anon_sym_U_DQUOTE] = ACTIONS(1188), + [anon_sym_u8_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_true] = ACTIONS(1186), + [sym_false] = ACTIONS(1186), + [anon_sym_NULL] = ACTIONS(1186), + [anon_sym_nullptr] = ACTIONS(1186), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(312), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), + [anon_sym___declspec] = ACTIONS(1154), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym___inline] = ACTIONS(1154), + [anon_sym___inline__] = ACTIONS(1154), + [anon_sym___forceinline] = ACTIONS(1154), + [anon_sym_thread_local] = ACTIONS(1154), + [anon_sym___thread] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_constexpr] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym___restrict__] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym__Noreturn] = ACTIONS(1154), + [anon_sym_noreturn] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym___try] = ACTIONS(1154), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym___alignof__] = ACTIONS(1154), + [anon_sym___alignof] = ACTIONS(1154), + [anon_sym__alignof] = ACTIONS(1154), + [anon_sym_alignof] = ACTIONS(1154), + [anon_sym__Alignof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = ACTIONS(1154), + [anon_sym_asm] = ACTIONS(1154), + [anon_sym___asm__] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [anon_sym_NULL] = ACTIONS(1154), + [anon_sym_nullptr] = ACTIONS(1154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [313] = { - [sym_attribute_declaration] = STATE(339), + [sym_comment] = STATE(313), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1202), + [aux_sym_preproc_if_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [sym_preproc_directive] = ACTIONS(1202), + [anon_sym_LPAREN2] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym___extension__] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym___attribute__] = ACTIONS(1202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), + [anon_sym___declspec] = ACTIONS(1202), + [anon_sym___cdecl] = ACTIONS(1202), + [anon_sym___clrcall] = ACTIONS(1202), + [anon_sym___stdcall] = ACTIONS(1202), + [anon_sym___fastcall] = ACTIONS(1202), + [anon_sym___thiscall] = ACTIONS(1202), + [anon_sym___vectorcall] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym___inline] = ACTIONS(1202), + [anon_sym___inline__] = ACTIONS(1202), + [anon_sym___forceinline] = ACTIONS(1202), + [anon_sym_thread_local] = ACTIONS(1202), + [anon_sym___thread] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_constexpr] = ACTIONS(1202), + [anon_sym_volatile] = ACTIONS(1202), + [anon_sym_restrict] = ACTIONS(1202), + [anon_sym___restrict__] = ACTIONS(1202), + [anon_sym__Atomic] = ACTIONS(1202), + [anon_sym__Noreturn] = ACTIONS(1202), + [anon_sym_noreturn] = ACTIONS(1202), + [sym_primitive_type] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1202), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym___alignof__] = ACTIONS(1202), + [anon_sym___alignof] = ACTIONS(1202), + [anon_sym__alignof] = ACTIONS(1202), + [anon_sym_alignof] = ACTIONS(1202), + [anon_sym__Alignof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [314] = { + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(314), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [315] = { + [sym_comment] = STATE(315), + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token2] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [316] = { + [sym_comment] = STATE(316), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [317] = { + [sym_attribute_declaration] = STATE(672), [sym_compound_statement] = STATE(200), [sym_attributed_statement] = STATE(200), [sym_labeled_statement] = STATE(200), @@ -50562,16594 +51734,17559 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(317), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(318), + [sym_identifier] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token2] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(319), + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(320), + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token2] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(321), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(322), + [aux_sym_attributed_declarator_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(323), + [sym_identifier] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(324), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(325), + [sym_identifier] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token2] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [sym_primitive_type] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(326), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(327), + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(328), + [sym_identifier] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token2] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(245), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(174), + [sym_expression_statement] = STATE(184), + [sym_if_statement] = STATE(185), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(202), + [sym_do_statement] = STATE(209), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(215), + [sym_goto_statement] = STATE(218), + [sym_seh_try_statement] = STATE(220), + [sym_seh_leave_statement] = STATE(221), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(329), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(330), + [sym_identifier] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [sym_primitive_type] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(331), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(332), + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym_seh_try_statement] = STATE(196), + [sym_seh_leave_statement] = STATE(196), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(333), + [aux_sym_attributed_declarator_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(334), + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(275), + [sym_attributed_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), + [sym_seh_try_statement] = STATE(275), + [sym_seh_leave_statement] = STATE(275), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(335), + [aux_sym_attributed_declarator_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1453), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1465), + [anon_sym___alignof] = ACTIONS(1465), + [anon_sym__alignof] = ACTIONS(1465), + [anon_sym_alignof] = ACTIONS(1465), + [anon_sym__Alignof] = ACTIONS(1465), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1483), + [anon_sym_u_DQUOTE] = ACTIONS(1483), + [anon_sym_U_DQUOTE] = ACTIONS(1483), + [anon_sym_u8_DQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1489), + [anon_sym_nullptr] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(173), + [sym_attributed_statement] = STATE(173), + [sym_labeled_statement] = STATE(173), + [sym_expression_statement] = STATE(173), + [sym_if_statement] = STATE(173), + [sym_switch_statement] = STATE(173), + [sym_case_statement] = STATE(173), + [sym_while_statement] = STATE(173), + [sym_do_statement] = STATE(173), + [sym_for_statement] = STATE(173), + [sym_return_statement] = STATE(173), + [sym_break_statement] = STATE(173), + [sym_continue_statement] = STATE(173), + [sym_goto_statement] = STATE(173), + [sym_seh_try_statement] = STATE(173), + [sym_seh_leave_statement] = STATE(173), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(336), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(337), + [sym_identifier] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(191), + [sym_attributed_statement] = STATE(167), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(188), + [sym_if_statement] = STATE(207), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(243), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(271), + [sym_return_statement] = STATE(272), + [sym_break_statement] = STATE(273), + [sym_continue_statement] = STATE(299), + [sym_goto_statement] = STATE(300), + [sym_seh_try_statement] = STATE(308), + [sym_seh_leave_statement] = STATE(312), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(338), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(339), + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym_seh_try_statement] = STATE(196), + [sym_seh_leave_statement] = STATE(196), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(340), + [aux_sym_attributed_declarator_repeat1] = STATE(398), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(341), + [sym_identifier] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [sym_primitive_type] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [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(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(342), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [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(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(343), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(344), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(345), + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym___try] = ACTIONS(1250), + [anon_sym___leave] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [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(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(346), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(1937), + [sym_attributed_statement] = STATE(1937), + [sym_labeled_statement] = STATE(1937), + [sym_expression_statement] = STATE(1937), + [sym_if_statement] = STATE(1937), + [sym_switch_statement] = STATE(1937), + [sym_case_statement] = STATE(1937), + [sym_while_statement] = STATE(1937), + [sym_do_statement] = STATE(1937), + [sym_for_statement] = STATE(1937), + [sym_return_statement] = STATE(1937), + [sym_break_statement] = STATE(1937), + [sym_continue_statement] = STATE(1937), + [sym_goto_statement] = STATE(1937), + [sym_seh_try_statement] = STATE(1937), + [sym_seh_leave_statement] = STATE(1937), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(347), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(348), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(349), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(350), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(351), + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym___try] = ACTIONS(1246), + [anon_sym___leave] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(352), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(353), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(354), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [355] = { - [sym_attribute_declaration] = STATE(314), - [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(355), + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(356), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(358), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(162), + [sym_attributed_statement] = STATE(162), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym_seh_try_statement] = STATE(162), + [sym_seh_leave_statement] = STATE(162), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(357), + [aux_sym_attributed_declarator_repeat1] = STATE(336), [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_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(358), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(245), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(174), + [sym_expression_statement] = STATE(184), + [sym_if_statement] = STATE(185), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(202), + [sym_do_statement] = STATE(209), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(215), + [sym_goto_statement] = STATE(218), + [sym_seh_try_statement] = STATE(220), + [sym_seh_leave_statement] = STATE(221), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(359), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(360), + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym___try] = ACTIONS(1254), + [anon_sym___leave] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), - [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(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), + [sym_comment] = STATE(361), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), - [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(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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(307), + [sym_attributed_statement] = STATE(307), + [sym_labeled_statement] = STATE(307), + [sym_expression_statement] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(307), + [sym_case_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_do_statement] = STATE(307), + [sym_for_statement] = STATE(307), + [sym_return_statement] = STATE(307), + [sym_break_statement] = STATE(307), + [sym_continue_statement] = STATE(307), + [sym_goto_statement] = STATE(307), + [sym_seh_try_statement] = STATE(307), + [sym_seh_leave_statement] = STATE(307), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(362), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(363), + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token2] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym___extension__] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym___inline] = ACTIONS(1242), + [anon_sym___inline__] = ACTIONS(1242), + [anon_sym___forceinline] = ACTIONS(1242), + [anon_sym_thread_local] = ACTIONS(1242), + [anon_sym___thread] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_constexpr] = ACTIONS(1242), + [anon_sym_volatile] = ACTIONS(1242), + [anon_sym_restrict] = ACTIONS(1242), + [anon_sym___restrict__] = ACTIONS(1242), + [anon_sym__Atomic] = ACTIONS(1242), + [anon_sym__Noreturn] = ACTIONS(1242), + [anon_sym_noreturn] = ACTIONS(1242), + [sym_primitive_type] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_goto] = ACTIONS(1242), + [anon_sym___try] = ACTIONS(1242), + [anon_sym___leave] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym___alignof__] = ACTIONS(1242), + [anon_sym___alignof] = ACTIONS(1242), + [anon_sym__alignof] = ACTIONS(1242), + [anon_sym_alignof] = ACTIONS(1242), + [anon_sym__Alignof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = ACTIONS(1242), + [anon_sym_asm] = ACTIONS(1242), + [anon_sym___asm__] = ACTIONS(1242), + [sym_number_literal] = ACTIONS(1244), + [anon_sym_L_SQUOTE] = ACTIONS(1244), + [anon_sym_u_SQUOTE] = ACTIONS(1244), + [anon_sym_U_SQUOTE] = ACTIONS(1244), + [anon_sym_u8_SQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [anon_sym_NULL] = ACTIONS(1242), + [anon_sym_nullptr] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(292), + [sym_attributed_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym_seh_try_statement] = STATE(292), + [sym_seh_leave_statement] = STATE(292), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(364), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(232), + [sym_attributed_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym_seh_try_statement] = STATE(232), + [sym_seh_leave_statement] = STATE(232), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(365), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), - [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(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), + [sym_comment] = STATE(366), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(367), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(368), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(275), + [sym_attributed_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), + [sym_seh_try_statement] = STATE(275), + [sym_seh_leave_statement] = STATE(275), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(369), + [aux_sym_attributed_declarator_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(183), + [sym_attributed_statement] = STATE(183), + [sym_labeled_statement] = STATE(183), + [sym_expression_statement] = STATE(183), + [sym_if_statement] = STATE(183), + [sym_switch_statement] = STATE(183), + [sym_case_statement] = STATE(183), + [sym_while_statement] = STATE(183), + [sym_do_statement] = STATE(183), + [sym_for_statement] = STATE(183), + [sym_return_statement] = STATE(183), + [sym_break_statement] = STATE(183), + [sym_continue_statement] = STATE(183), + [sym_goto_statement] = STATE(183), + [sym_seh_try_statement] = STATE(183), + [sym_seh_leave_statement] = STATE(183), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(370), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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), + [sym_comment] = STATE(371), + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(372), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_goto] = ACTIONS(393), + [anon_sym___try] = ACTIONS(395), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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), + [sym_attribute_declaration] = STATE(672), + [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(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(373), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(374), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_comment] = STATE(375), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_comment] = STATE(376), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_comment] = STATE(377), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(85), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym_seh_try_statement] = STATE(85), + [sym_seh_leave_statement] = STATE(85), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(378), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(87), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(98), + [sym_case_statement] = STATE(100), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(118), + [sym_seh_try_statement] = STATE(119), + [sym_seh_leave_statement] = STATE(122), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(379), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_comment] = STATE(380), + [sym_identifier] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(2030), + [sym_attributed_statement] = STATE(2030), + [sym_labeled_statement] = STATE(2030), + [sym_expression_statement] = STATE(2030), + [sym_if_statement] = STATE(2030), + [sym_switch_statement] = STATE(2030), + [sym_case_statement] = STATE(2030), + [sym_while_statement] = STATE(2030), + [sym_do_statement] = STATE(2030), + [sym_for_statement] = STATE(2030), + [sym_return_statement] = STATE(2030), + [sym_break_statement] = STATE(2030), + [sym_continue_statement] = STATE(2030), + [sym_goto_statement] = STATE(2030), + [sym_seh_try_statement] = STATE(2030), + [sym_seh_leave_statement] = STATE(2030), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(381), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_comment] = STATE(382), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), + [sym_comment] = STATE(383), + [sym_identifier] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token2] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [sym_primitive_type] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(384), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(385), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(386), + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token2] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym___try] = ACTIONS(1262), + [anon_sym___leave] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(387), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(388), + [aux_sym_attributed_declarator_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1531), + [anon_sym___try] = ACTIONS(1534), + [anon_sym___leave] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1465), + [anon_sym___alignof] = ACTIONS(1465), + [anon_sym__alignof] = ACTIONS(1465), + [anon_sym_alignof] = ACTIONS(1465), + [anon_sym__Alignof] = ACTIONS(1465), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1483), + [anon_sym_u_DQUOTE] = ACTIONS(1483), + [anon_sym_U_DQUOTE] = ACTIONS(1483), + [anon_sym_u8_DQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1489), + [anon_sym_nullptr] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(287), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(287), + [sym_expression_statement] = STATE(287), + [sym_if_statement] = STATE(287), + [sym_switch_statement] = STATE(287), + [sym_case_statement] = STATE(287), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(287), + [sym_for_statement] = STATE(287), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(287), + [sym_continue_statement] = STATE(287), + [sym_goto_statement] = STATE(287), + [sym_seh_try_statement] = STATE(287), + [sym_seh_leave_statement] = STATE(287), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(389), + [aux_sym_attributed_declarator_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [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(917), + [anon_sym___leave] = ACTIONS(919), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(173), + [sym_attributed_statement] = STATE(173), + [sym_labeled_statement] = STATE(173), + [sym_expression_statement] = STATE(173), + [sym_if_statement] = STATE(173), + [sym_switch_statement] = STATE(173), + [sym_case_statement] = STATE(173), + [sym_while_statement] = STATE(173), + [sym_do_statement] = STATE(173), + [sym_for_statement] = STATE(173), + [sym_return_statement] = STATE(173), + [sym_break_statement] = STATE(173), + [sym_continue_statement] = STATE(173), + [sym_goto_statement] = STATE(173), + [sym_seh_try_statement] = STATE(173), + [sym_seh_leave_statement] = STATE(173), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(390), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1576), + [anon_sym_goto] = ACTIONS(1579), + [anon_sym___try] = ACTIONS(1582), + [anon_sym___leave] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1465), + [anon_sym___alignof] = ACTIONS(1465), + [anon_sym__alignof] = ACTIONS(1465), + [anon_sym_alignof] = ACTIONS(1465), + [anon_sym__Alignof] = ACTIONS(1465), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1483), + [anon_sym_u_DQUOTE] = ACTIONS(1483), + [anon_sym_U_DQUOTE] = ACTIONS(1483), + [anon_sym_u8_DQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1489), + [anon_sym_nullptr] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(391), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(2043), + [sym_attributed_statement] = STATE(2043), + [sym_labeled_statement] = STATE(2043), + [sym_expression_statement] = STATE(2043), + [sym_if_statement] = STATE(2043), + [sym_switch_statement] = STATE(2043), + [sym_case_statement] = STATE(2043), + [sym_while_statement] = STATE(2043), + [sym_do_statement] = STATE(2043), + [sym_for_statement] = STATE(2043), + [sym_return_statement] = STATE(2043), + [sym_break_statement] = STATE(2043), + [sym_continue_statement] = STATE(2043), + [sym_goto_statement] = STATE(2043), + [sym_seh_try_statement] = STATE(2043), + [sym_seh_leave_statement] = STATE(2043), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(392), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(393), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), - [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(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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(2051), + [sym_attributed_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_case_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_break_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_goto_statement] = STATE(2051), + [sym_seh_try_statement] = STATE(2051), + [sym_seh_leave_statement] = STATE(2051), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(394), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(395), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym_seh_try_statement] = STATE(196), + [sym_seh_leave_statement] = STATE(196), + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2046), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(396), + [aux_sym_attributed_declarator_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1624), + [anon_sym_goto] = ACTIONS(1627), + [anon_sym___try] = ACTIONS(1630), + [anon_sym___leave] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1465), + [anon_sym___alignof] = ACTIONS(1465), + [anon_sym__alignof] = ACTIONS(1465), + [anon_sym_alignof] = ACTIONS(1465), + [anon_sym__Alignof] = ACTIONS(1465), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1483), + [anon_sym_u_DQUOTE] = ACTIONS(1483), + [anon_sym_U_DQUOTE] = ACTIONS(1483), + [anon_sym_u8_DQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1489), + [anon_sym_nullptr] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(397), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym___try] = ACTIONS(1258), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym_seh_try_statement] = STATE(196), + [sym_seh_leave_statement] = STATE(196), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(398), + [aux_sym_attributed_declarator_repeat1] = STATE(398), + [sym_identifier] = ACTIONS(1636), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1624), + [anon_sym_goto] = ACTIONS(1627), + [anon_sym___try] = ACTIONS(1654), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1465), + [anon_sym___alignof] = ACTIONS(1465), + [anon_sym__alignof] = ACTIONS(1465), + [anon_sym_alignof] = ACTIONS(1465), + [anon_sym__Alignof] = ACTIONS(1465), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1483), + [anon_sym_u_DQUOTE] = ACTIONS(1483), + [anon_sym_U_DQUOTE] = ACTIONS(1483), + [anon_sym_u8_DQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1489), + [anon_sym_nullptr] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(247), + [sym_attributed_statement] = STATE(249), + [sym_labeled_statement] = STATE(256), + [sym_expression_statement] = STATE(257), + [sym_if_statement] = STATE(258), + [sym_switch_statement] = STATE(259), + [sym_case_statement] = STATE(270), [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), - [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(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), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(286), + [sym_seh_try_statement] = STATE(288), + [sym_seh_leave_statement] = STATE(290), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(399), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1559), - [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(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), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1886), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(400), + [aux_sym_attributed_declarator_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(511), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_goto] = ACTIONS(525), + [anon_sym___try] = ACTIONS(527), + [anon_sym___leave] = ACTIONS(529), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(109), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_case_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym_seh_try_statement] = STATE(109), + [sym_seh_leave_statement] = STATE(109), + [sym__expression] = STATE(1063), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1885), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(401), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(402), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(287), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(287), + [sym_expression_statement] = STATE(287), + [sym_if_statement] = STATE(287), + [sym_switch_statement] = STATE(287), + [sym_case_statement] = STATE(287), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(287), + [sym_for_statement] = STATE(287), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(287), + [sym_continue_statement] = STATE(287), + [sym_goto_statement] = STATE(287), + [sym_seh_try_statement] = STATE(287), + [sym_seh_leave_statement] = STATE(287), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(403), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(307), + [sym_attributed_statement] = STATE(307), + [sym_labeled_statement] = STATE(307), + [sym_expression_statement] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(307), + [sym_case_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_do_statement] = STATE(307), + [sym_for_statement] = STATE(307), + [sym_return_statement] = STATE(307), + [sym_break_statement] = STATE(307), + [sym_continue_statement] = STATE(307), + [sym_goto_statement] = STATE(307), + [sym_seh_try_statement] = STATE(307), + [sym_seh_leave_statement] = STATE(307), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(404), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(405), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token2] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym___try] = ACTIONS(1238), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [406] = { - [sym__expression] = STATE(869), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(700), - [sym_call_expression] = STATE(700), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(700), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(406), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(407), + [sym_identifier] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token2] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym___try] = ACTIONS(1270), + [anon_sym___leave] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(408), + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token2] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(409), + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym___extension__] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym___inline] = ACTIONS(1242), + [anon_sym___inline__] = ACTIONS(1242), + [anon_sym___forceinline] = ACTIONS(1242), + [anon_sym_thread_local] = ACTIONS(1242), + [anon_sym___thread] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_constexpr] = ACTIONS(1242), + [anon_sym_volatile] = ACTIONS(1242), + [anon_sym_restrict] = ACTIONS(1242), + [anon_sym___restrict__] = ACTIONS(1242), + [anon_sym__Atomic] = ACTIONS(1242), + [anon_sym__Noreturn] = ACTIONS(1242), + [anon_sym_noreturn] = ACTIONS(1242), + [sym_primitive_type] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_goto] = ACTIONS(1242), + [anon_sym___try] = ACTIONS(1242), + [anon_sym___leave] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym___alignof__] = ACTIONS(1242), + [anon_sym___alignof] = ACTIONS(1242), + [anon_sym__alignof] = ACTIONS(1242), + [anon_sym_alignof] = ACTIONS(1242), + [anon_sym__Alignof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = ACTIONS(1242), + [anon_sym_asm] = ACTIONS(1242), + [anon_sym___asm__] = ACTIONS(1242), + [sym_number_literal] = ACTIONS(1244), + [anon_sym_L_SQUOTE] = ACTIONS(1244), + [anon_sym_u_SQUOTE] = ACTIONS(1244), + [anon_sym_U_SQUOTE] = ACTIONS(1244), + [anon_sym_u8_SQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [anon_sym_NULL] = ACTIONS(1242), + [anon_sym_nullptr] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [410] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_attribute_declaration] = STATE(672), + [sym_compound_statement] = STATE(459), + [sym_attributed_statement] = STATE(459), + [sym_labeled_statement] = STATE(459), + [sym_expression_statement] = STATE(459), + [sym_if_statement] = STATE(459), + [sym_switch_statement] = STATE(459), + [sym_case_statement] = STATE(459), + [sym_while_statement] = STATE(459), + [sym_do_statement] = STATE(459), + [sym_for_statement] = STATE(459), + [sym_return_statement] = STATE(459), + [sym_break_statement] = STATE(459), + [sym_continue_statement] = STATE(459), + [sym_goto_statement] = STATE(459), + [sym_seh_try_statement] = STATE(459), + [sym_seh_leave_statement] = STATE(459), + [sym__expression] = STATE(1109), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(1975), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(410), + [aux_sym_attributed_declarator_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1081), + [anon_sym___leave] = ACTIONS(397), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [411] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [anon_sym_COMMA] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [sym_primitive_type] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [413] = { - [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), - [sym_comment] = ACTIONS(3), + [sym__expression] = STATE(893), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(730), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(730), + [sym_call_expression] = STATE(730), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(730), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(730), + [sym_initializer_list] = STATE(720), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(413), + [sym_identifier] = ACTIONS(1370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1661), + [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(1358), + [anon_sym_DASH_GT] = ACTIONS(1360), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [414] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [415] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym___extension__] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym___attribute__] = ACTIONS(1262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(1262), + [anon_sym___cdecl] = ACTIONS(1262), + [anon_sym___clrcall] = ACTIONS(1262), + [anon_sym___stdcall] = ACTIONS(1262), + [anon_sym___fastcall] = ACTIONS(1262), + [anon_sym___thiscall] = ACTIONS(1262), + [anon_sym___vectorcall] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym___inline] = ACTIONS(1262), + [anon_sym___inline__] = ACTIONS(1262), + [anon_sym___forceinline] = ACTIONS(1262), + [anon_sym_thread_local] = ACTIONS(1262), + [anon_sym___thread] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_constexpr] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_restrict] = ACTIONS(1262), + [anon_sym___restrict__] = ACTIONS(1262), + [anon_sym__Atomic] = ACTIONS(1262), + [anon_sym__Noreturn] = ACTIONS(1262), + [anon_sym_noreturn] = ACTIONS(1262), + [sym_primitive_type] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_sizeof] = ACTIONS(1262), + [anon_sym___alignof__] = ACTIONS(1262), + [anon_sym___alignof] = ACTIONS(1262), + [anon_sym__alignof] = ACTIONS(1262), + [anon_sym_alignof] = ACTIONS(1262), + [anon_sym__Alignof] = ACTIONS(1262), + [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = ACTIONS(1262), + [anon_sym_asm] = ACTIONS(1262), + [anon_sym___asm__] = ACTIONS(1262), + [sym_number_literal] = ACTIONS(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym___extension__] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym___attribute__] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), + [anon_sym___declspec] = ACTIONS(1258), + [anon_sym___cdecl] = ACTIONS(1258), + [anon_sym___clrcall] = ACTIONS(1258), + [anon_sym___stdcall] = ACTIONS(1258), + [anon_sym___fastcall] = ACTIONS(1258), + [anon_sym___thiscall] = ACTIONS(1258), + [anon_sym___vectorcall] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym___inline] = ACTIONS(1258), + [anon_sym___inline__] = ACTIONS(1258), + [anon_sym___forceinline] = ACTIONS(1258), + [anon_sym_thread_local] = ACTIONS(1258), + [anon_sym___thread] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_constexpr] = ACTIONS(1258), + [anon_sym_volatile] = ACTIONS(1258), + [anon_sym_restrict] = ACTIONS(1258), + [anon_sym___restrict__] = ACTIONS(1258), + [anon_sym__Atomic] = ACTIONS(1258), + [anon_sym__Noreturn] = ACTIONS(1258), + [anon_sym_noreturn] = ACTIONS(1258), + [sym_primitive_type] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_goto] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym___alignof__] = ACTIONS(1258), + [anon_sym___alignof] = ACTIONS(1258), + [anon_sym__alignof] = ACTIONS(1258), + [anon_sym_alignof] = ACTIONS(1258), + [anon_sym__Alignof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = ACTIONS(1258), + [anon_sym_asm] = ACTIONS(1258), + [anon_sym___asm__] = ACTIONS(1258), + [sym_number_literal] = ACTIONS(1260), + [anon_sym_L_SQUOTE] = ACTIONS(1260), + [anon_sym_u_SQUOTE] = ACTIONS(1260), + [anon_sym_U_SQUOTE] = ACTIONS(1260), + [anon_sym_u8_SQUOTE] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_L_DQUOTE] = ACTIONS(1260), + [anon_sym_u_DQUOTE] = ACTIONS(1260), + [anon_sym_U_DQUOTE] = ACTIONS(1260), + [anon_sym_u8_DQUOTE] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_true] = ACTIONS(1258), + [sym_false] = ACTIONS(1258), + [anon_sym_NULL] = ACTIONS(1258), + [anon_sym_nullptr] = ACTIONS(1258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [sym_primitive_type] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [420] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [421] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [sym_primitive_type] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym___extension__] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym___inline] = ACTIONS(1242), + [anon_sym___inline__] = ACTIONS(1242), + [anon_sym___forceinline] = ACTIONS(1242), + [anon_sym_thread_local] = ACTIONS(1242), + [anon_sym___thread] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_constexpr] = ACTIONS(1242), + [anon_sym_volatile] = ACTIONS(1242), + [anon_sym_restrict] = ACTIONS(1242), + [anon_sym___restrict__] = ACTIONS(1242), + [anon_sym__Atomic] = ACTIONS(1242), + [anon_sym__Noreturn] = ACTIONS(1242), + [anon_sym_noreturn] = ACTIONS(1242), + [sym_primitive_type] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_goto] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym___alignof__] = ACTIONS(1242), + [anon_sym___alignof] = ACTIONS(1242), + [anon_sym__alignof] = ACTIONS(1242), + [anon_sym_alignof] = ACTIONS(1242), + [anon_sym__Alignof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = ACTIONS(1242), + [anon_sym_asm] = ACTIONS(1242), + [anon_sym___asm__] = ACTIONS(1242), + [sym_number_literal] = ACTIONS(1244), + [anon_sym_L_SQUOTE] = ACTIONS(1244), + [anon_sym_u_SQUOTE] = ACTIONS(1244), + [anon_sym_U_SQUOTE] = ACTIONS(1244), + [anon_sym_u8_SQUOTE] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1242), + [sym_false] = ACTIONS(1242), + [anon_sym_NULL] = ACTIONS(1242), + [anon_sym_nullptr] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [423] = { - [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [sym_primitive_type] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym___extension__] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym___attribute__] = ACTIONS(1270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), + [anon_sym___declspec] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym___inline] = ACTIONS(1270), + [anon_sym___inline__] = ACTIONS(1270), + [anon_sym___forceinline] = ACTIONS(1270), + [anon_sym_thread_local] = ACTIONS(1270), + [anon_sym___thread] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_constexpr] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(1270), + [anon_sym_restrict] = ACTIONS(1270), + [anon_sym___restrict__] = ACTIONS(1270), + [anon_sym__Atomic] = ACTIONS(1270), + [anon_sym__Noreturn] = ACTIONS(1270), + [anon_sym_noreturn] = ACTIONS(1270), + [sym_primitive_type] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1270), + [anon_sym___alignof__] = ACTIONS(1270), + [anon_sym___alignof] = ACTIONS(1270), + [anon_sym__alignof] = ACTIONS(1270), + [anon_sym_alignof] = ACTIONS(1270), + [anon_sym__Alignof] = ACTIONS(1270), + [anon_sym_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = ACTIONS(1270), + [anon_sym_asm] = ACTIONS(1270), + [anon_sym___asm__] = ACTIONS(1270), + [sym_number_literal] = ACTIONS(1272), + [anon_sym_L_SQUOTE] = ACTIONS(1272), + [anon_sym_u_SQUOTE] = ACTIONS(1272), + [anon_sym_U_SQUOTE] = ACTIONS(1272), + [anon_sym_u8_SQUOTE] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_L_DQUOTE] = ACTIONS(1272), + [anon_sym_u_DQUOTE] = ACTIONS(1272), + [anon_sym_U_DQUOTE] = ACTIONS(1272), + [anon_sym_u8_DQUOTE] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_true] = ACTIONS(1270), + [sym_false] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym_identifier] = ACTIONS(1665), + [aux_sym_preproc_include_token1] = ACTIONS(1665), + [aux_sym_preproc_def_token1] = ACTIONS(1665), + [aux_sym_preproc_if_token1] = ACTIONS(1665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1665), + [sym_preproc_directive] = ACTIONS(1665), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_typedef] = ACTIONS(1665), + [anon_sym_extern] = ACTIONS(1665), + [anon_sym___attribute__] = ACTIONS(1665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1663), + [anon_sym___declspec] = ACTIONS(1665), + [anon_sym___cdecl] = ACTIONS(1665), + [anon_sym___clrcall] = ACTIONS(1665), + [anon_sym___stdcall] = ACTIONS(1665), + [anon_sym___fastcall] = ACTIONS(1665), + [anon_sym___thiscall] = ACTIONS(1665), + [anon_sym___vectorcall] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_signed] = ACTIONS(1665), + [anon_sym_unsigned] = ACTIONS(1665), + [anon_sym_long] = ACTIONS(1665), + [anon_sym_short] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1665), + [anon_sym_auto] = ACTIONS(1665), + [anon_sym_register] = ACTIONS(1665), + [anon_sym_inline] = ACTIONS(1665), + [anon_sym___inline] = ACTIONS(1665), + [anon_sym___inline__] = ACTIONS(1665), + [anon_sym___forceinline] = ACTIONS(1665), + [anon_sym_thread_local] = ACTIONS(1665), + [anon_sym___thread] = ACTIONS(1665), + [anon_sym_const] = ACTIONS(1665), + [anon_sym_constexpr] = ACTIONS(1665), + [anon_sym_volatile] = ACTIONS(1665), + [anon_sym_restrict] = ACTIONS(1665), + [anon_sym___restrict__] = ACTIONS(1665), + [anon_sym__Atomic] = ACTIONS(1665), + [anon_sym__Noreturn] = ACTIONS(1665), + [anon_sym_noreturn] = ACTIONS(1665), + [sym_primitive_type] = ACTIONS(1665), + [anon_sym_enum] = ACTIONS(1665), + [anon_sym_struct] = ACTIONS(1665), + [anon_sym_union] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_switch] = ACTIONS(1665), + [anon_sym_case] = ACTIONS(1665), + [anon_sym_default] = ACTIONS(1665), + [anon_sym_while] = ACTIONS(1665), + [anon_sym_do] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1665), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1665), + [anon_sym_goto] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_sizeof] = ACTIONS(1665), + [anon_sym___alignof__] = ACTIONS(1665), + [anon_sym___alignof] = ACTIONS(1665), + [anon_sym__alignof] = ACTIONS(1665), + [anon_sym_alignof] = ACTIONS(1665), + [anon_sym__Alignof] = ACTIONS(1665), + [anon_sym_offsetof] = ACTIONS(1665), + [anon_sym__Generic] = ACTIONS(1665), + [anon_sym_asm] = ACTIONS(1665), + [anon_sym___asm__] = ACTIONS(1665), + [sym_number_literal] = ACTIONS(1663), + [anon_sym_L_SQUOTE] = ACTIONS(1663), + [anon_sym_u_SQUOTE] = ACTIONS(1663), + [anon_sym_U_SQUOTE] = ACTIONS(1663), + [anon_sym_u8_SQUOTE] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [anon_sym_NULL] = ACTIONS(1665), + [anon_sym_nullptr] = ACTIONS(1665), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(431), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym___extension__] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), + [anon_sym___declspec] = ACTIONS(1238), + [anon_sym___cdecl] = ACTIONS(1238), + [anon_sym___clrcall] = ACTIONS(1238), + [anon_sym___stdcall] = ACTIONS(1238), + [anon_sym___fastcall] = ACTIONS(1238), + [anon_sym___thiscall] = ACTIONS(1238), + [anon_sym___vectorcall] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym___inline] = ACTIONS(1238), + [anon_sym___inline__] = ACTIONS(1238), + [anon_sym___forceinline] = ACTIONS(1238), + [anon_sym_thread_local] = ACTIONS(1238), + [anon_sym___thread] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_constexpr] = ACTIONS(1238), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [anon_sym___restrict__] = ACTIONS(1238), + [anon_sym__Atomic] = ACTIONS(1238), + [anon_sym__Noreturn] = ACTIONS(1238), + [anon_sym_noreturn] = ACTIONS(1238), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym___alignof__] = ACTIONS(1238), + [anon_sym___alignof] = ACTIONS(1238), + [anon_sym__alignof] = ACTIONS(1238), + [anon_sym_alignof] = ACTIONS(1238), + [anon_sym__Alignof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = ACTIONS(1238), + [anon_sym_asm] = ACTIONS(1238), + [anon_sym___asm__] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym_u_SQUOTE] = ACTIONS(1240), + [anon_sym_U_SQUOTE] = ACTIONS(1240), + [anon_sym_u8_SQUOTE] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_u_DQUOTE] = ACTIONS(1240), + [anon_sym_U_DQUOTE] = ACTIONS(1240), + [anon_sym_u8_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_NULL] = ACTIONS(1238), + [anon_sym_nullptr] = ACTIONS(1238), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_comment] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1667), + [sym_identifier] = ACTIONS(1669), + [aux_sym_preproc_include_token1] = ACTIONS(1669), + [aux_sym_preproc_def_token1] = ACTIONS(1669), + [aux_sym_preproc_if_token1] = ACTIONS(1669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1669), + [sym_preproc_directive] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym___extension__] = ACTIONS(1669), + [anon_sym_typedef] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym___attribute__] = ACTIONS(1669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1667), + [anon_sym___declspec] = ACTIONS(1669), + [anon_sym___cdecl] = ACTIONS(1669), + [anon_sym___clrcall] = ACTIONS(1669), + [anon_sym___stdcall] = ACTIONS(1669), + [anon_sym___fastcall] = ACTIONS(1669), + [anon_sym___thiscall] = ACTIONS(1669), + [anon_sym___vectorcall] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1669), + [anon_sym_unsigned] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_auto] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_inline] = ACTIONS(1669), + [anon_sym___inline] = ACTIONS(1669), + [anon_sym___inline__] = ACTIONS(1669), + [anon_sym___forceinline] = ACTIONS(1669), + [anon_sym_thread_local] = ACTIONS(1669), + [anon_sym___thread] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_constexpr] = ACTIONS(1669), + [anon_sym_volatile] = ACTIONS(1669), + [anon_sym_restrict] = ACTIONS(1669), + [anon_sym___restrict__] = ACTIONS(1669), + [anon_sym__Atomic] = ACTIONS(1669), + [anon_sym__Noreturn] = ACTIONS(1669), + [anon_sym_noreturn] = ACTIONS(1669), + [sym_primitive_type] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1669), + [anon_sym_union] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_switch] = ACTIONS(1669), + [anon_sym_case] = ACTIONS(1669), + [anon_sym_default] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_goto] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1669), + [anon_sym___alignof__] = ACTIONS(1669), + [anon_sym___alignof] = ACTIONS(1669), + [anon_sym__alignof] = ACTIONS(1669), + [anon_sym_alignof] = ACTIONS(1669), + [anon_sym__Alignof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1669), + [anon_sym__Generic] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1669), + [anon_sym___asm__] = ACTIONS(1669), + [sym_number_literal] = ACTIONS(1667), + [anon_sym_L_SQUOTE] = ACTIONS(1667), + [anon_sym_u_SQUOTE] = ACTIONS(1667), + [anon_sym_U_SQUOTE] = ACTIONS(1667), + [anon_sym_u8_SQUOTE] = ACTIONS(1667), + [anon_sym_SQUOTE] = ACTIONS(1667), + [anon_sym_L_DQUOTE] = ACTIONS(1667), + [anon_sym_u_DQUOTE] = ACTIONS(1667), + [anon_sym_U_DQUOTE] = ACTIONS(1667), + [anon_sym_u8_DQUOTE] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym_true] = ACTIONS(1669), + [sym_false] = ACTIONS(1669), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [434] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1885), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym___extension__] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym___attribute__] = ACTIONS(1246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), + [anon_sym___declspec] = ACTIONS(1246), + [anon_sym___cdecl] = ACTIONS(1246), + [anon_sym___clrcall] = ACTIONS(1246), + [anon_sym___stdcall] = ACTIONS(1246), + [anon_sym___fastcall] = ACTIONS(1246), + [anon_sym___thiscall] = ACTIONS(1246), + [anon_sym___vectorcall] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym___inline] = ACTIONS(1246), + [anon_sym___inline__] = ACTIONS(1246), + [anon_sym___forceinline] = ACTIONS(1246), + [anon_sym_thread_local] = ACTIONS(1246), + [anon_sym___thread] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_constexpr] = ACTIONS(1246), + [anon_sym_volatile] = ACTIONS(1246), + [anon_sym_restrict] = ACTIONS(1246), + [anon_sym___restrict__] = ACTIONS(1246), + [anon_sym__Atomic] = ACTIONS(1246), + [anon_sym__Noreturn] = ACTIONS(1246), + [anon_sym_noreturn] = ACTIONS(1246), + [sym_primitive_type] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_goto] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym___alignof__] = ACTIONS(1246), + [anon_sym___alignof] = ACTIONS(1246), + [anon_sym__alignof] = ACTIONS(1246), + [anon_sym_alignof] = ACTIONS(1246), + [anon_sym__Alignof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = ACTIONS(1246), + [anon_sym_asm] = ACTIONS(1246), + [anon_sym___asm__] = ACTIONS(1246), + [sym_number_literal] = ACTIONS(1248), + [anon_sym_L_SQUOTE] = ACTIONS(1248), + [anon_sym_u_SQUOTE] = ACTIONS(1248), + [anon_sym_U_SQUOTE] = ACTIONS(1248), + [anon_sym_u8_SQUOTE] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_L_DQUOTE] = ACTIONS(1248), + [anon_sym_u_DQUOTE] = ACTIONS(1248), + [anon_sym_U_DQUOTE] = ACTIONS(1248), + [anon_sym_u8_DQUOTE] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [anon_sym_NULL] = ACTIONS(1246), + [anon_sym_nullptr] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [435] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1977), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym___extension__] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym___attribute__] = ACTIONS(1250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), + [anon_sym___declspec] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym___inline] = ACTIONS(1250), + [anon_sym___inline__] = ACTIONS(1250), + [anon_sym___forceinline] = ACTIONS(1250), + [anon_sym_thread_local] = ACTIONS(1250), + [anon_sym___thread] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_constexpr] = ACTIONS(1250), + [anon_sym_volatile] = ACTIONS(1250), + [anon_sym_restrict] = ACTIONS(1250), + [anon_sym___restrict__] = ACTIONS(1250), + [anon_sym__Atomic] = ACTIONS(1250), + [anon_sym__Noreturn] = ACTIONS(1250), + [anon_sym_noreturn] = ACTIONS(1250), + [sym_primitive_type] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym___alignof__] = ACTIONS(1250), + [anon_sym___alignof] = ACTIONS(1250), + [anon_sym__alignof] = ACTIONS(1250), + [anon_sym_alignof] = ACTIONS(1250), + [anon_sym__Alignof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = ACTIONS(1250), + [anon_sym_asm] = ACTIONS(1250), + [anon_sym___asm__] = ACTIONS(1250), + [sym_number_literal] = ACTIONS(1252), + [anon_sym_L_SQUOTE] = ACTIONS(1252), + [anon_sym_u_SQUOTE] = ACTIONS(1252), + [anon_sym_U_SQUOTE] = ACTIONS(1252), + [anon_sym_u8_SQUOTE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_L_DQUOTE] = ACTIONS(1252), + [anon_sym_u_DQUOTE] = ACTIONS(1252), + [anon_sym_U_DQUOTE] = ACTIONS(1252), + [anon_sym_u8_DQUOTE] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_true] = ACTIONS(1250), + [sym_false] = ACTIONS(1250), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [436] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1802), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [437] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1782), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [438] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1809), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [439] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1880), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym___extension__] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym___inline] = ACTIONS(1254), + [anon_sym___inline__] = ACTIONS(1254), + [anon_sym___forceinline] = ACTIONS(1254), + [anon_sym_thread_local] = ACTIONS(1254), + [anon_sym___thread] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_constexpr] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym___restrict__] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym__Noreturn] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym___alignof__] = ACTIONS(1254), + [anon_sym___alignof] = ACTIONS(1254), + [anon_sym__alignof] = ACTIONS(1254), + [anon_sym_alignof] = ACTIONS(1254), + [anon_sym__Alignof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = ACTIONS(1254), + [anon_sym_asm] = ACTIONS(1254), + [anon_sym___asm__] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1256), + [anon_sym_L_SQUOTE] = ACTIONS(1256), + [anon_sym_u_SQUOTE] = ACTIONS(1256), + [anon_sym_U_SQUOTE] = ACTIONS(1256), + [anon_sym_u8_SQUOTE] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_L_DQUOTE] = ACTIONS(1256), + [anon_sym_u_DQUOTE] = ACTIONS(1256), + [anon_sym_U_DQUOTE] = ACTIONS(1256), + [anon_sym_u8_DQUOTE] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [anon_sym_NULL] = ACTIONS(1254), + [anon_sym_nullptr] = ACTIONS(1254), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [440] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1956), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [aux_sym_preproc_include_token1] = ACTIONS(1673), + [aux_sym_preproc_def_token1] = ACTIONS(1673), + [aux_sym_preproc_if_token1] = ACTIONS(1673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), + [sym_preproc_directive] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym___extension__] = ACTIONS(1673), + [anon_sym_typedef] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym___attribute__] = ACTIONS(1673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1671), + [anon_sym___declspec] = ACTIONS(1673), + [anon_sym___cdecl] = ACTIONS(1673), + [anon_sym___clrcall] = ACTIONS(1673), + [anon_sym___stdcall] = ACTIONS(1673), + [anon_sym___fastcall] = ACTIONS(1673), + [anon_sym___thiscall] = ACTIONS(1673), + [anon_sym___vectorcall] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_signed] = ACTIONS(1673), + [anon_sym_unsigned] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_auto] = ACTIONS(1673), + [anon_sym_register] = ACTIONS(1673), + [anon_sym_inline] = ACTIONS(1673), + [anon_sym___inline] = ACTIONS(1673), + [anon_sym___inline__] = ACTIONS(1673), + [anon_sym___forceinline] = ACTIONS(1673), + [anon_sym_thread_local] = ACTIONS(1673), + [anon_sym___thread] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_constexpr] = ACTIONS(1673), + [anon_sym_volatile] = ACTIONS(1673), + [anon_sym_restrict] = ACTIONS(1673), + [anon_sym___restrict__] = ACTIONS(1673), + [anon_sym__Atomic] = ACTIONS(1673), + [anon_sym__Noreturn] = ACTIONS(1673), + [anon_sym_noreturn] = ACTIONS(1673), + [sym_primitive_type] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_struct] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_goto] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_sizeof] = ACTIONS(1673), + [anon_sym___alignof__] = ACTIONS(1673), + [anon_sym___alignof] = ACTIONS(1673), + [anon_sym__alignof] = ACTIONS(1673), + [anon_sym_alignof] = ACTIONS(1673), + [anon_sym__Alignof] = ACTIONS(1673), + [anon_sym_offsetof] = ACTIONS(1673), + [anon_sym__Generic] = ACTIONS(1673), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym___asm__] = ACTIONS(1673), + [sym_number_literal] = ACTIONS(1671), + [anon_sym_L_SQUOTE] = ACTIONS(1671), + [anon_sym_u_SQUOTE] = ACTIONS(1671), + [anon_sym_U_SQUOTE] = ACTIONS(1671), + [anon_sym_u8_SQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_L_DQUOTE] = ACTIONS(1671), + [anon_sym_u_DQUOTE] = ACTIONS(1671), + [anon_sym_U_DQUOTE] = ACTIONS(1671), + [anon_sym_u8_DQUOTE] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [anon_sym_NULL] = ACTIONS(1673), + [anon_sym_nullptr] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [441] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1925), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [442] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1985), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1844), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(442), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [443] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1853), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1833), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(443), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [444] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1887), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1928), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(444), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [445] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_type_descriptor] = STATE(1946), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), - [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(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [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(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), - [sym_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1816), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(445), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_EQ] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1671), - [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_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1882), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(446), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [447] = { + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(2012), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(447), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), [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_EQ] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(1675), - [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_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [448] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_identifier] = ACTIONS(1679), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1890), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(448), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), [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_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [449] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(799), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(799), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(799), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(735), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1894), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(449), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [450] = { - [sym__expression] = STATE(869), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [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_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(2000), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(450), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(2026), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(451), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [452] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1831), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(452), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [453] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(1144), + [sym__type_specifier] = STATE(1153), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_comma_expression] = STATE(2016), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_type_descriptor] = STATE(1905), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(453), + [aux_sym__type_definition_type_repeat1] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1677), + [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [454] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_initializer_list] = STATE(720), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(454), + [sym_identifier] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [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(1358), + [anon_sym_DASH_GT] = ACTIONS(1360), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [455] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(821), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(821), + [sym_call_expression] = STATE(821), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(821), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(821), + [sym_initializer_list] = STATE(720), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(742), + [sym_null] = STATE(719), + [sym_comment] = STATE(455), + [sym_identifier] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1685), + [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(1358), + [anon_sym_DASH_GT] = ACTIONS(1360), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [456] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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(1727), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(456), + [sym_identifier] = ACTIONS(1687), + [anon_sym_COMMA] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym___extension__] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym___attribute__] = ACTIONS(1687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1689), + [anon_sym___declspec] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_signed] = ACTIONS(1687), + [anon_sym_unsigned] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_EQ] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_auto] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_inline] = ACTIONS(1687), + [anon_sym___inline] = ACTIONS(1687), + [anon_sym___inline__] = ACTIONS(1687), + [anon_sym___forceinline] = ACTIONS(1687), + [anon_sym_thread_local] = ACTIONS(1687), + [anon_sym___thread] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_constexpr] = ACTIONS(1687), + [anon_sym_volatile] = ACTIONS(1687), + [anon_sym_restrict] = ACTIONS(1687), + [anon_sym___restrict__] = ACTIONS(1687), + [anon_sym__Atomic] = ACTIONS(1687), + [anon_sym__Noreturn] = ACTIONS(1687), + [anon_sym_noreturn] = ACTIONS(1687), + [sym_primitive_type] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_COLON] = ACTIONS(1689), + [anon_sym_struct] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_goto] = ACTIONS(1687), + [anon_sym___try] = ACTIONS(1687), + [anon_sym___leave] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_sizeof] = ACTIONS(1687), + [anon_sym___alignof__] = ACTIONS(1687), + [anon_sym___alignof] = ACTIONS(1687), + [anon_sym__alignof] = ACTIONS(1687), + [anon_sym_alignof] = ACTIONS(1687), + [anon_sym__Alignof] = ACTIONS(1687), + [anon_sym_offsetof] = ACTIONS(1687), + [anon_sym__Generic] = ACTIONS(1687), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym___asm__] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1689), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1689), + [anon_sym_u_DQUOTE] = ACTIONS(1689), + [anon_sym_U_DQUOTE] = ACTIONS(1689), + [anon_sym_u8_DQUOTE] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym_true] = ACTIONS(1687), + [sym_false] = ACTIONS(1687), + [anon_sym_NULL] = ACTIONS(1687), + [anon_sym_nullptr] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [457] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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(1727), - [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_comment] = ACTIONS(3), + [sym_comment] = STATE(457), + [sym_identifier] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym___extension__] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym___attribute__] = ACTIONS(1691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1693), + [anon_sym___declspec] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_signed] = ACTIONS(1691), + [anon_sym_unsigned] = ACTIONS(1691), + [anon_sym_long] = ACTIONS(1691), + [anon_sym_short] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_auto] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_inline] = ACTIONS(1691), + [anon_sym___inline] = ACTIONS(1691), + [anon_sym___inline__] = ACTIONS(1691), + [anon_sym___forceinline] = ACTIONS(1691), + [anon_sym_thread_local] = ACTIONS(1691), + [anon_sym___thread] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_constexpr] = ACTIONS(1691), + [anon_sym_volatile] = ACTIONS(1691), + [anon_sym_restrict] = ACTIONS(1691), + [anon_sym___restrict__] = ACTIONS(1691), + [anon_sym__Atomic] = ACTIONS(1691), + [anon_sym__Noreturn] = ACTIONS(1691), + [anon_sym_noreturn] = ACTIONS(1691), + [sym_primitive_type] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_COLON] = ACTIONS(1693), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1691), + [anon_sym___try] = ACTIONS(1691), + [anon_sym___leave] = ACTIONS(1691), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_sizeof] = ACTIONS(1691), + [anon_sym___alignof__] = ACTIONS(1691), + [anon_sym___alignof] = ACTIONS(1691), + [anon_sym__alignof] = ACTIONS(1691), + [anon_sym_alignof] = ACTIONS(1691), + [anon_sym__Alignof] = ACTIONS(1691), + [anon_sym_offsetof] = ACTIONS(1691), + [anon_sym__Generic] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1691), + [anon_sym___asm__] = ACTIONS(1691), + [sym_number_literal] = ACTIONS(1693), + [anon_sym_L_SQUOTE] = ACTIONS(1693), + [anon_sym_u_SQUOTE] = ACTIONS(1693), + [anon_sym_U_SQUOTE] = ACTIONS(1693), + [anon_sym_u8_SQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_L_DQUOTE] = ACTIONS(1693), + [anon_sym_u_DQUOTE] = ACTIONS(1693), + [anon_sym_U_DQUOTE] = ACTIONS(1693), + [anon_sym_u8_DQUOTE] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [anon_sym_NULL] = ACTIONS(1691), + [anon_sym_nullptr] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [458] = { - [sym_identifier] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym___extension__] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym___attribute__] = ACTIONS(1736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1736), - [anon_sym_unsigned] = ACTIONS(1736), - [anon_sym_long] = ACTIONS(1736), - [anon_sym_short] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_auto] = ACTIONS(1736), - [anon_sym_register] = ACTIONS(1736), - [anon_sym_inline] = ACTIONS(1736), - [anon_sym___inline] = ACTIONS(1736), - [anon_sym___inline__] = ACTIONS(1736), - [anon_sym___forceinline] = ACTIONS(1736), - [anon_sym_thread_local] = ACTIONS(1736), - [anon_sym___thread] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_constexpr] = ACTIONS(1736), - [anon_sym_volatile] = ACTIONS(1736), - [anon_sym_restrict] = ACTIONS(1736), - [anon_sym___restrict__] = ACTIONS(1736), - [anon_sym__Atomic] = ACTIONS(1736), - [anon_sym__Noreturn] = ACTIONS(1736), - [anon_sym_noreturn] = ACTIONS(1736), - [sym_primitive_type] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1736), - [anon_sym_union] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_goto] = ACTIONS(1734), - [anon_sym___try] = ACTIONS(1734), - [anon_sym___leave] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1734), - [anon_sym___alignof__] = ACTIONS(1734), - [anon_sym___alignof] = ACTIONS(1734), - [anon_sym__alignof] = ACTIONS(1734), - [anon_sym_alignof] = ACTIONS(1734), - [anon_sym__Alignof] = ACTIONS(1734), - [anon_sym_offsetof] = ACTIONS(1734), - [anon_sym__Generic] = ACTIONS(1734), - [anon_sym_asm] = ACTIONS(1734), - [anon_sym___asm__] = ACTIONS(1734), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), - [anon_sym_NULL] = ACTIONS(1734), - [anon_sym_nullptr] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), + [sym__expression] = STATE(893), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_initializer_list] = STATE(720), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(458), + [sym_identifier] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1701), + [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(1358), + [anon_sym_DASH_GT] = ACTIONS(1360), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [459] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym_else_clause] = STATE(255), + [sym_comment] = STATE(459), + [sym_identifier] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym___extension__] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym___inline] = ACTIONS(1104), + [anon_sym___inline__] = ACTIONS(1104), + [anon_sym___forceinline] = ACTIONS(1104), + [anon_sym_thread_local] = ACTIONS(1104), + [anon_sym___thread] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_constexpr] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_noreturn] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym___try] = ACTIONS(1104), + [anon_sym___leave] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym___alignof__] = ACTIONS(1104), + [anon_sym___alignof] = ACTIONS(1104), + [anon_sym__alignof] = ACTIONS(1104), + [anon_sym_alignof] = ACTIONS(1104), + [anon_sym__Alignof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [anon_sym_NULL] = ACTIONS(1104), + [anon_sym_nullptr] = ACTIONS(1104), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [460] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(460), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1722), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [461] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(461), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [462] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), - [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_EQ] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1697), - [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_comment] = ACTIONS(3), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(462), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [463] = { - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1184), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [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(1496), - [sym_attributed_declarator] = STATE(1354), - [sym_pointer_declarator] = STATE(1354), - [sym_abstract_pointer_declarator] = STATE(1496), - [sym_function_declarator] = STATE(1354), - [sym_abstract_function_declarator] = STATE(1496), - [sym_array_declarator] = STATE(1354), - [sym_abstract_array_declarator] = STATE(1496), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1486), - [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [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), - [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___based] = ACTIONS(1753), - [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_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(1755), - [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), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [464] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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_RBRACK] = ACTIONS(1765), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(464), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [465] = { - [sym_type_qualifier] = STATE(464), - [sym__expression] = STATE(1104), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1769), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1771), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(465), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [466] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1114), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1773), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_comment] = STATE(466), + [sym_identifier] = ACTIONS(1737), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym___extension__] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1746), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___inline] = ACTIONS(1744), + [anon_sym___inline__] = ACTIONS(1744), + [anon_sym___forceinline] = ACTIONS(1744), + [anon_sym_thread_local] = ACTIONS(1744), + [anon_sym___thread] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_constexpr] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym___restrict__] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym__Noreturn] = ACTIONS(1744), + [anon_sym_noreturn] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1742), + [anon_sym_case] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_goto] = ACTIONS(1742), + [anon_sym___try] = ACTIONS(1742), + [anon_sym___leave] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_sizeof] = ACTIONS(1742), + [anon_sym___alignof__] = ACTIONS(1742), + [anon_sym___alignof] = ACTIONS(1742), + [anon_sym__alignof] = ACTIONS(1742), + [anon_sym_alignof] = ACTIONS(1742), + [anon_sym__Alignof] = ACTIONS(1742), + [anon_sym_offsetof] = ACTIONS(1742), + [anon_sym__Generic] = ACTIONS(1742), + [anon_sym_asm] = ACTIONS(1742), + [anon_sym___asm__] = ACTIONS(1742), + [sym_number_literal] = ACTIONS(1740), + [anon_sym_L_SQUOTE] = ACTIONS(1740), + [anon_sym_u_SQUOTE] = ACTIONS(1740), + [anon_sym_U_SQUOTE] = ACTIONS(1740), + [anon_sym_u8_SQUOTE] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_L_DQUOTE] = ACTIONS(1740), + [anon_sym_u_DQUOTE] = ACTIONS(1740), + [anon_sym_U_DQUOTE] = ACTIONS(1740), + [anon_sym_u8_DQUOTE] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym_true] = ACTIONS(1742), + [sym_false] = ACTIONS(1742), + [anon_sym_NULL] = ACTIONS(1742), + [anon_sym_nullptr] = ACTIONS(1742), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [467] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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_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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(467), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [468] = { - [sym_type_qualifier] = STATE(466), - [sym__expression] = STATE(1091), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1781), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(468), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [469] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1092), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1785), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1787), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(469), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [470] = { - [sym_type_qualifier] = STATE(467), - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1789), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1791), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_string_literal] = STATE(673), + [sym_comment] = STATE(470), + [aux_sym_sized_type_specifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym___extension__] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym___attribute__] = ACTIONS(1705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1718), + [anon_sym___declspec] = ACTIONS(1705), + [anon_sym___based] = ACTIONS(1705), + [anon_sym___cdecl] = ACTIONS(1705), + [anon_sym___clrcall] = ACTIONS(1705), + [anon_sym___stdcall] = ACTIONS(1705), + [anon_sym___fastcall] = ACTIONS(1705), + [anon_sym___thiscall] = ACTIONS(1705), + [anon_sym___vectorcall] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_auto] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym___inline] = ACTIONS(1705), + [anon_sym___inline__] = ACTIONS(1705), + [anon_sym___forceinline] = ACTIONS(1705), + [anon_sym_thread_local] = ACTIONS(1705), + [anon_sym___thread] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_constexpr] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_restrict] = ACTIONS(1705), + [anon_sym___restrict__] = ACTIONS(1705), + [anon_sym__Atomic] = ACTIONS(1705), + [anon_sym__Noreturn] = ACTIONS(1705), + [anon_sym_noreturn] = ACTIONS(1705), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_STAR_EQ] = ACTIONS(1724), + [anon_sym_SLASH_EQ] = ACTIONS(1724), + [anon_sym_PERCENT_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1724), + [anon_sym_DASH_EQ] = ACTIONS(1724), + [anon_sym_LT_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_GT_EQ] = ACTIONS(1724), + [anon_sym_AMP_EQ] = ACTIONS(1724), + [anon_sym_CARET_EQ] = ACTIONS(1724), + [anon_sym_PIPE_EQ] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [471] = { - [sym_type_qualifier] = STATE(469), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1793), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1795), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1221), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_based_modifier] = STATE(1941), + [sym_ms_call_modifier] = STATE(1299), + [sym__declarator] = STATE(1450), + [sym__abstract_declarator] = STATE(1555), + [sym_parenthesized_declarator] = STATE(1384), + [sym_abstract_parenthesized_declarator] = STATE(1527), + [sym_attributed_declarator] = STATE(1384), + [sym_pointer_declarator] = STATE(1384), + [sym_abstract_pointer_declarator] = STATE(1527), + [sym_function_declarator] = STATE(1384), + [sym_abstract_function_declarator] = STATE(1527), + [sym_array_declarator] = STATE(1384), + [sym_abstract_array_declarator] = STATE(1527), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym_variadic_parameter] = STATE(1700), + [sym_parameter_list] = STATE(1532), + [sym_parameter_declaration] = STATE(1700), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(471), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1753), + [anon_sym_LPAREN2] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___based] = ACTIONS(1759), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [472] = { - [sym_type_qualifier] = STATE(473), - [sym__expression] = STATE(1094), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1797), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1133), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(472), + [aux_sym__type_definition_type_repeat1] = STATE(752), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [473] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1090), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_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(1801), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1803), - [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(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1132), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(473), + [aux_sym__type_definition_type_repeat1] = STATE(477), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [474] = { - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_initializer_list] = STATE(1586), - [sym_initializer_pair] = STATE(1586), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1807), - [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(1809), - [anon_sym_LBRACK] = ACTIONS(1811), - [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(1813), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1123), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(474), + [aux_sym__type_definition_type_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [475] = { - [sym__expression] = STATE(1076), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_initializer_list] = STATE(1751), - [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), - [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(1815), - [anon_sym_LBRACK] = ACTIONS(1811), - [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(1813), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(475), + [aux_sym__type_definition_type_repeat1] = STATE(752), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [476] = { - [sym__expression] = STATE(1076), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_initializer_list] = STATE(1751), - [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), - [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(1817), - [anon_sym_LBRACK] = ACTIONS(1811), - [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(1813), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1111), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(476), + [aux_sym__type_definition_type_repeat1] = STATE(752), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [477] = { - [sym__expression] = STATE(1076), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_initializer_list] = STATE(1751), - [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), - [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_LBRACK] = ACTIONS(1811), - [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(1813), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1134), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(477), + [aux_sym__type_definition_type_repeat1] = STATE(752), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [478] = { - [sym_preproc_def] = STATE(486), - [sym_preproc_function_def] = STATE(486), - [sym_preproc_call] = STATE(486), - [sym_preproc_if_in_field_declaration_list] = STATE(486), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(486), - [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(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(486), - [sym_field_declaration] = STATE(486), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(486), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1131), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(478), + [aux_sym__type_definition_type_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [479] = { - [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(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1139), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(479), + [aux_sym__type_definition_type_repeat1] = STATE(752), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [480] = { - [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(1840), - [sym_preproc_elif_in_field_declaration_list] = STATE(1840), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1840), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(491), - [sym_field_declaration] = STATE(491), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(491), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1110), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(480), + [aux_sym__type_definition_type_repeat1] = STATE(472), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1929), - [sym_preproc_elif_in_field_declaration_list] = STATE(1929), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1929), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_type_qualifier] = STATE(773), + [sym__expression] = STATE(1126), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(914), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(481), + [aux_sym__type_definition_type_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym___extension__] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_constexpr] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_restrict] = ACTIONS(1769), + [anon_sym___restrict__] = ACTIONS(1769), + [anon_sym__Atomic] = ACTIONS(1769), + [anon_sym__Noreturn] = ACTIONS(1769), + [anon_sym_noreturn] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1701), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [482] = { - [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(1798), - [sym_preproc_elif_in_field_declaration_list] = STATE(1798), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1798), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(479), - [sym_field_declaration] = STATE(479), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(479), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym__expression] = STATE(1045), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_initializer_list] = STATE(1673), + [sym_initializer_pair] = STATE(1673), + [sym_subscript_designator] = STATE(1674), + [sym_subscript_range_designator] = STATE(1674), + [sym_field_designator] = STATE(1674), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(482), + [aux_sym_initializer_pair_repeat1] = STATE(1467), + [sym_identifier] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1817), + [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(1819), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(481), - [sym_field_declaration] = STATE(481), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(481), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_initializer_list] = STATE(1767), + [sym_initializer_pair] = STATE(1767), + [sym_subscript_designator] = STATE(1674), + [sym_subscript_range_designator] = STATE(1674), + [sym_field_designator] = STATE(1674), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(483), + [aux_sym_initializer_pair_repeat1] = STATE(1467), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1817), + [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(1819), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(485), - [sym_field_declaration] = STATE(485), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(485), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_initializer_list] = STATE(1767), + [sym_initializer_pair] = STATE(1767), + [sym_subscript_designator] = STATE(1674), + [sym_subscript_range_designator] = STATE(1674), + [sym_field_designator] = STATE(1674), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(484), + [aux_sym_initializer_pair_repeat1] = STATE(1467), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1817), + [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(1819), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_initializer_list] = STATE(1767), + [sym_initializer_pair] = STATE(1767), + [sym_subscript_designator] = STATE(1674), + [sym_subscript_range_designator] = STATE(1674), + [sym_field_designator] = STATE(1674), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(485), + [aux_sym_initializer_pair_repeat1] = STATE(1467), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1817), + [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(1819), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [486] = { - [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(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1999), + [sym_preproc_elif_in_field_declaration_list] = STATE(1999), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1999), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(486), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(499), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1831), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [487] = { - [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(1987), - [sym_preproc_elif_in_field_declaration_list] = STATE(1987), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1987), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(488), - [sym_field_declaration] = STATE(488), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(488), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1811), + [sym_preproc_elif_in_field_declaration_list] = STATE(1811), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1811), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(487), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1983), - [sym_preproc_elif_in_field_declaration_list] = STATE(1983), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1983), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [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(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(488), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [489] = { - [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(1830), - [sym_preproc_elif_in_field_declaration_list] = STATE(1830), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1830), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(493), - [sym_field_declaration] = STATE(493), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1976), + [sym_preproc_elif_in_field_declaration_list] = STATE(1976), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1976), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(489), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(493), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1857), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [490] = { - [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(1984), - [sym_preproc_elif_in_field_declaration_list] = STATE(1984), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1984), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(2033), + [sym_preproc_elif_in_field_declaration_list] = STATE(2033), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2033), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(490), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(501), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1849), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1829), - [sym_preproc_elif_in_field_declaration_list] = STATE(1829), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1829), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1861), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1940), + [sym_preproc_elif_in_field_declaration_list] = STATE(1940), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1940), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(491), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1982), - [sym_preproc_elif_in_field_declaration_list] = STATE(1982), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1982), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1817), + [sym_preproc_elif_in_field_declaration_list] = STATE(1817), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1817), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(492), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(1828), - [sym_preproc_elif_in_field_declaration_list] = STATE(1828), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1828), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1865), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [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(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(493), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [494] = { - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1184), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(1390), - [sym__abstract_declarator] = STATE(1523), - [sym_abstract_parenthesized_declarator] = STATE(1496), - [sym_abstract_pointer_declarator] = STATE(1496), - [sym_abstract_function_declarator] = STATE(1496), - [sym_abstract_array_declarator] = STATE(1496), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1486), - [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [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___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_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(1755), - [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), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(2005), + [sym_preproc_elif_in_field_declaration_list] = STATE(2005), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2005), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(494), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, [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(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1993), + [sym_preproc_elif_in_field_declaration_list] = STATE(1993), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1993), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(495), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [496] = { + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1942), + [sym_preproc_elif_in_field_declaration_list] = STATE(1942), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1942), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(496), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(488), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [497] = { + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1931), + [sym_preproc_elif_in_field_declaration_list] = STATE(1931), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1931), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(497), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [498] = { + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(2019), + [sym_preproc_elif_in_field_declaration_list] = STATE(2019), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2019), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(498), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1874), - [aux_sym_preproc_if_token1] = ACTIONS(1877), - [aux_sym_preproc_if_token2] = ACTIONS(1880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1882), - [aux_sym_preproc_else_token1] = ACTIONS(1880), - [aux_sym_preproc_elif_token1] = ACTIONS(1880), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1880), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1880), - [sym_preproc_directive] = ACTIONS(1885), - [anon_sym___extension__] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym___attribute__] = ACTIONS(1894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1900), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_auto] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_inline] = ACTIONS(1891), - [anon_sym___inline] = ACTIONS(1891), - [anon_sym___inline__] = ACTIONS(1891), - [anon_sym___forceinline] = ACTIONS(1891), - [anon_sym_thread_local] = ACTIONS(1891), - [anon_sym___thread] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_constexpr] = ACTIONS(1888), - [anon_sym_volatile] = ACTIONS(1888), - [anon_sym_restrict] = ACTIONS(1888), - [anon_sym___restrict__] = ACTIONS(1888), - [anon_sym__Atomic] = ACTIONS(1888), - [anon_sym__Noreturn] = ACTIONS(1888), - [anon_sym_noreturn] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [499] = { + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(1991), + [sym_preproc_elif_in_field_declaration_list] = STATE(1991), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1991), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(499), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [500] = { + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(2011), + [sym_preproc_elif_in_field_declaration_list] = STATE(2011), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2011), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(500), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(494), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [501] = { + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym_preproc_else_in_field_declaration_list] = STATE(2009), + [sym_preproc_elif_in_field_declaration_list] = STATE(2009), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2009), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(501), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [aux_sym_preproc_def_token1] = ACTIONS(1827), + [aux_sym_preproc_if_token1] = ACTIONS(1829), + [aux_sym_preproc_if_token2] = ACTIONS(1871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1833), + [aux_sym_preproc_else_token1] = ACTIONS(1835), + [aux_sym_preproc_elif_token1] = ACTIONS(1837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1839), + [sym_preproc_directive] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [502] = { + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1221), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_ms_call_modifier] = STATE(1419), + [sym__abstract_declarator] = STATE(1555), + [sym_abstract_parenthesized_declarator] = STATE(1527), + [sym_abstract_pointer_declarator] = STATE(1527), + [sym_abstract_function_declarator] = STATE(1527), + [sym_abstract_array_declarator] = STATE(1527), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym_variadic_parameter] = STATE(1700), + [sym_parameter_list] = STATE(1532), + [sym_parameter_declaration] = STATE(1700), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(502), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1753), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym___extension__] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(47), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(41), + [anon_sym___clrcall] = ACTIONS(41), + [anon_sym___stdcall] = ACTIONS(41), + [anon_sym___fastcall] = ACTIONS(41), + [anon_sym___thiscall] = ACTIONS(41), + [anon_sym___vectorcall] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(47), + [anon_sym_auto] = ACTIONS(47), + [anon_sym_register] = ACTIONS(47), + [anon_sym_inline] = ACTIONS(47), + [anon_sym___inline] = ACTIONS(47), + [anon_sym___inline__] = ACTIONS(47), + [anon_sym___forceinline] = ACTIONS(47), + [anon_sym_thread_local] = ACTIONS(47), + [anon_sym___thread] = ACTIONS(47), + [anon_sym_const] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(49), + [anon_sym_volatile] = ACTIONS(49), + [anon_sym_restrict] = ACTIONS(49), + [anon_sym___restrict__] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym__Noreturn] = ACTIONS(49), + [anon_sym_noreturn] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [503] = { + [sym_preproc_def] = STATE(864), + [sym_preproc_function_def] = STATE(864), + [sym_preproc_call] = STATE(864), + [sym_preproc_if_in_field_declaration_list] = STATE(864), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(864), + [sym__declaration_modifiers] = STATE(781), + [sym__declaration_specifiers] = STATE(1322), + [sym_attribute_specifier] = STATE(782), + [sym_attribute_declaration] = STATE(782), + [sym_ms_declspec_modifier] = STATE(782), + [sym_storage_class_specifier] = STATE(782), + [sym_type_qualifier] = STATE(782), + [sym__type_specifier] = STATE(806), + [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(865), + [sym_field_declaration] = STATE(864), + [sym_macro_type_specifier] = STATE(825), + [sym_comment] = STATE(503), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(766), + [aux_sym_sized_type_specifier_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1877), + [aux_sym_preproc_def_token1] = ACTIONS(1880), + [aux_sym_preproc_if_token1] = ACTIONS(1883), + [aux_sym_preproc_if_token2] = ACTIONS(1886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [aux_sym_preproc_else_token1] = ACTIONS(1886), + [aux_sym_preproc_elif_token1] = ACTIONS(1886), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1886), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1886), + [sym_preproc_directive] = ACTIONS(1891), + [anon_sym___extension__] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1903), + [anon_sym___declspec] = ACTIONS(1906), + [anon_sym_signed] = ACTIONS(1909), + [anon_sym_unsigned] = ACTIONS(1909), + [anon_sym_long] = ACTIONS(1909), + [anon_sym_short] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_auto] = ACTIONS(1897), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_inline] = ACTIONS(1897), + [anon_sym___inline] = ACTIONS(1897), + [anon_sym___inline__] = ACTIONS(1897), + [anon_sym___forceinline] = ACTIONS(1897), + [anon_sym_thread_local] = ACTIONS(1897), + [anon_sym___thread] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_constexpr] = ACTIONS(1894), + [anon_sym_volatile] = ACTIONS(1894), + [anon_sym_restrict] = ACTIONS(1894), + [anon_sym___restrict__] = ACTIONS(1894), + [anon_sym__Atomic] = ACTIONS(1894), + [anon_sym__Noreturn] = ACTIONS(1894), + [anon_sym_noreturn] = ACTIONS(1894), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [504] = { + [sym_compound_statement] = STATE(1675), + [sym__expression] = STATE(1047), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(504), + [sym_identifier] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(43), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [505] = { + [sym_compound_statement] = STATE(1714), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(505), + [sym_identifier] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1928), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(43), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + }, + [506] = { + [sym_compound_statement] = STATE(1800), + [sym__expression] = STATE(1095), + [sym__expression_not_binary] = STATE(699), + [sym__string] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(826), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_alignof_expression] = STATE(719), + [sym_offsetof_expression] = STATE(719), + [sym_generic_expression] = STATE(719), + [sym_subscript_expression] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_gnu_asm_expression] = STATE(719), + [sym_field_expression] = STATE(826), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(826), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(693), + [sym_null] = STATE(719), + [sym_comment] = STATE(506), + [sym_identifier] = ACTIONS(1679), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(43), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 25, + [0] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, + ACTIONS(1366), 1, + anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_RPAREN, - ACTIONS(1920), 1, - anon_sym___extension__, - STATE(683), 1, + STATE(507), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1023), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1081), 1, sym__expression, - STATE(1640), 1, - sym_compound_statement, - ACTIONS(21), 2, + STATE(1768), 1, + sym_initializer_list, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67159,87 +69296,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [115] = 25, + [119] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1922), 1, + ACTIONS(1934), 1, anon_sym_RPAREN, - ACTIONS(1924), 1, - anon_sym___extension__, - STATE(683), 1, + STATE(508), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1022), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1076), 1, sym__expression, - STATE(1659), 1, - sym_compound_statement, - ACTIONS(21), 2, + STATE(1945), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67249,85 +69388,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [230] = 24, + [238] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, + ACTIONS(1366), 1, + anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1926), 1, - anon_sym___extension__, - STATE(683), 1, + STATE(509), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1049), 1, + STATE(720), 1, + sym_initializer_list, + STATE(733), 1, + sym_concatenated_string, + STATE(747), 1, sym__expression, - STATE(1704), 1, - sym_compound_statement, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67337,83 +69480,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [342] = 23, + [357] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1936), 1, + anon_sym_RPAREN, + STATE(510), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1044), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1085), 1, sym__expression, - STATE(1693), 1, - sym_initializer_list, - ACTIONS(21), 2, + STATE(1895), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67423,83 +69572,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [451] = 23, + [476] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1928), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(1938), 1, + anon_sym_RPAREN, + STATE(511), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1069), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1103), 1, sym__expression, - STATE(1920), 1, + STATE(2004), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67509,168 +69664,181 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [560] = 22, + [595] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1358), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(512), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(714), 1, + STATE(720), 1, sym_initializer_list, - STATE(869), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(893), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [667] = 23, + [714] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1934), 1, - anon_sym_RPAREN, - STATE(683), 1, + ACTIONS(1940), 1, + anon_sym_COLON, + STATE(513), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1064), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1057), 1, sym__expression, - STATE(1790), 1, + STATE(2037), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67680,83 +69848,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [776] = 23, + [833] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1936), 1, + ACTIONS(1942), 1, anon_sym_COLON, - STATE(683), 1, + STATE(514), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1031), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1059), 1, sym__expression, - STATE(2016), 1, + STATE(1980), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67766,83 +69940,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [885] = 23, + [952] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1938), 1, + ACTIONS(1944), 1, anon_sym_SEMI, - STATE(683), 1, + STATE(515), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1081), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1102), 1, sym__expression, - STATE(1861), 1, + STATE(2029), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67852,83 +70032,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [994] = 23, + [1071] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1940), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(1946), 1, + anon_sym_COLON, + STATE(516), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1056), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1051), 1, sym__expression, - STATE(1863), 1, + STATE(1848), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -67938,83 +70124,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [1103] = 23, + [1190] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1942), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(1948), 1, + anon_sym_RPAREN, + STATE(517), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1034), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1084), 1, sym__expression, - STATE(1801), 1, + STATE(1897), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68024,83 +70216,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [1212] = 23, + [1309] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1944), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1950), 1, + anon_sym_SEMI, + STATE(518), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1075), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1065), 1, sym__expression, - STATE(1892), 1, + STATE(1985), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68110,253 +70308,273 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [1321] = 22, + [1428] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1358), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(714), 1, + STATE(519), 1, + sym_comment, + STATE(720), 1, sym_initializer_list, - STATE(722), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, + sym_string_literal, + STATE(747), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [1428] = 22, + [1547] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1950), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_initializer_list, - STATE(722), 1, - sym__expression, - STATE(735), 1, + ACTIONS(1960), 1, + anon_sym_SEMI, + STATE(520), 1, + sym_comment, + STATE(693), 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(733), 1, + sym_concatenated_string, + STATE(1066), 1, + sym__expression, + STATE(1987), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [1535] = 23, + [1666] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1956), 1, + ACTIONS(1962), 1, anon_sym_COLON, - STATE(683), 1, + STATE(521), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1046), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1097), 1, sym__expression, - STATE(1860), 1, + STATE(1933), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68366,83 +70584,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [1644] = 23, + [1785] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1964), 1, + anon_sym_COLON, + STATE(522), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(714), 1, - sym_initializer_list, - STATE(722), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1060), 1, sym__expression, - ACTIONS(21), 2, + STATE(1935), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68452,83 +70676,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [1753] = 23, + [1904] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1958), 1, + ACTIONS(1966), 1, anon_sym_SEMI, - STATE(683), 1, + STATE(523), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1082), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1061), 1, sym__expression, - STATE(1786), 1, + STATE(1863), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68538,83 +70768,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [1862] = 23, + [2023] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1968), 1, + anon_sym_SEMI, + STATE(524), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1054), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1050), 1, sym__expression, - STATE(1996), 1, + STATE(1871), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68624,83 +70860,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [1971] = 23, + [2142] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + ACTIONS(1970), 1, + anon_sym_COLON, + STATE(525), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(714), 1, - sym_initializer_list, - STATE(869), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1108), 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(1955), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 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, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68710,83 +70952,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2080] = 23, + [2261] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, + ACTIONS(1366), 1, + anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1962), 1, - anon_sym_RPAREN, - STATE(683), 1, + STATE(526), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1067), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1079), 1, sym__expression, - STATE(1906), 1, - sym_comma_expression, - ACTIONS(21), 2, + STATE(1765), 1, + sym_initializer_list, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68796,83 +71044,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2189] = 23, + [2380] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1358), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1368), 1, + anon_sym_sizeof, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1972), 1, + anon_sym_LPAREN2, + STATE(527), 1, + sym_comment, + STATE(720), 1, + sym_initializer_list, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(1055), 1, + STATE(747), 1, sym__expression, - STATE(1748), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1364), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1974), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68882,83 +71136,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2298] = 23, + [2499] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1976), 1, anon_sym_RPAREN, - STATE(683), 1, + STATE(528), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1032), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1083), 1, sym__expression, - STATE(1804), 1, + STATE(1898), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -68968,83 +71228,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2407] = 23, + [2618] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1978), 1, + anon_sym_RPAREN, + STATE(529), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1084), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1105), 1, sym__expression, - STATE(1753), 1, - sym_initializer_list, - ACTIONS(21), 2, + STATE(1964), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69054,83 +71320,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2516] = 23, + [2737] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1358), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_initializer_list, - STATE(722), 1, - sym__expression, - STATE(735), 1, + STATE(530), 1, + sym_comment, + STATE(693), 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(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, + STATE(733), 1, + sym_concatenated_string, + STATE(1067), 1, + sym__expression, + STATE(1747), 1, + sym_initializer_list, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69140,83 +71412,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2625] = 23, + [2856] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1972), 1, + ACTIONS(1980), 1, anon_sym_SEMI, - STATE(683), 1, + STATE(531), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1026), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1094), 1, sym__expression, - STATE(1808), 1, + STATE(1954), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69226,83 +71504,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2734] = 23, + [2975] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1974), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + STATE(532), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1041), 1, + STATE(720), 1, + sym_initializer_list, + STATE(733), 1, + sym_concatenated_string, + STATE(893), 1, sym__expression, - STATE(1911), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1984), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69312,83 +71596,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2843] = 23, + [3094] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1976), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1986), 1, + anon_sym_SEMI, + STATE(533), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1042), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1104), 1, sym__expression, - STATE(1997), 1, + STATE(1988), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69398,83 +71688,89 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [2952] = 23, + [3213] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1978), 1, - anon_sym_RPAREN, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(534), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1047), 1, + STATE(720), 1, + sym_initializer_list, + STATE(733), 1, + sym_concatenated_string, + STATE(747), 1, sym__expression, - STATE(1797), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69484,83 +71780,87 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [3061] = 23, + [3332] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1980), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + anon_sym_RBRACK, + STATE(535), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1078), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - STATE(1914), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1984), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69570,83 +71870,87 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [3170] = 23, + [3448] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1982), 1, - anon_sym_RPAREN, - STATE(683), 1, + STATE(536), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1058), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1089), 1, sym__expression, - STATE(1844), 1, + STATE(2016), 1, sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69656,83 +71960,87 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [3279] = 23, + [3564] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1984), 1, - anon_sym_RPAREN, - STATE(683), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + ACTIONS(1994), 1, + anon_sym_RBRACK, + STATE(537), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1057), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - STATE(1827), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1984), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -69742,500 +72050,450 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [3388] = 23, + [3680] = 26, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(93), 1, + sym_number_literal, + ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + ACTIONS(1996), 1, + anon_sym_RBRACK, + STATE(538), 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(1819), 1, - sym_identifier, - ACTIONS(1986), 1, - aux_sym_preproc_def_token1, - ACTIONS(1988), 1, - aux_sym_preproc_if_token1, - ACTIONS(1990), 1, - aux_sym_preproc_if_token2, - ACTIONS(1994), 1, - sym_preproc_directive, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(1992), 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(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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(539), 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] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - sym_identifier, - ACTIONS(1880), 1, - aux_sym_preproc_if_token2, - ACTIONS(1894), 1, - anon_sym___attribute__, - ACTIONS(1897), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1900), 1, - anon_sym___declspec, - ACTIONS(1906), 1, - sym_primitive_type, - ACTIONS(1909), 1, - anon_sym_enum, - ACTIONS(1912), 1, - anon_sym_struct, - ACTIONS(1915), 1, - anon_sym_union, - ACTIONS(1996), 1, - aux_sym_preproc_def_token1, - ACTIONS(1999), 1, - aux_sym_preproc_if_token1, - ACTIONS(2005), 1, - sym_preproc_directive, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(2002), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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(528), 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(1888), 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(1891), 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, - [3604] = 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(1930), 1, - anon_sym_LPAREN2, - ACTIONS(2008), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [3708] = 21, + [3796] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - ACTIONS(2010), 1, + ACTIONS(1998), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(539), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [3812] = 21, + [3912] = 29, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + ACTIONS(2000), 1, + aux_sym_preproc_def_token1, + ACTIONS(2002), 1, + aux_sym_preproc_if_token1, + ACTIONS(2004), 1, + aux_sym_preproc_if_token2, + ACTIONS(2008), 1, + sym_preproc_directive, + STATE(540), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + STATE(552), 1, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(944), 1, + sym__field_declaration_list_item, + STATE(1326), 1, + sym__declaration_specifiers, + ACTIONS(2006), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(945), 6, + 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, + ACTIONS(49), 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(47), 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, + [4034] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - ACTIONS(2012), 1, + ACTIONS(2010), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(541), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [3916] = 22, + [4150] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + ACTIONS(2012), 1, + anon_sym_RBRACK, + STATE(542), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1068), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - STATE(1945), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1984), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -70245,73 +72503,80 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [4022] = 23, + [4266] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - sym_identifier, - ACTIONS(1894), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(1897), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1900), 1, + ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(1906), 1, + ACTIONS(51), 1, sym_primitive_type, - ACTIONS(1909), 1, + ACTIONS(53), 1, anon_sym_enum, - ACTIONS(1912), 1, + ACTIONS(55), 1, anon_sym_struct, - ACTIONS(1915), 1, + ACTIONS(57), 1, anon_sym_union, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, ACTIONS(2014), 1, aux_sym_preproc_def_token1, - ACTIONS(2017), 1, + ACTIONS(2016), 1, aux_sym_preproc_if_token1, - ACTIONS(2023), 1, + ACTIONS(2020), 1, sym_preproc_directive, - ACTIONS(2026), 1, + ACTIONS(2022), 1, anon_sym_RBRACE, - STATE(795), 1, + STATE(543), 1, + sym_comment, + STATE(548), 1, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, + STATE(951), 1, + sym__field_declaration_list_item, + STATE(1328), 1, sym__declaration_specifiers, - ACTIONS(2020), 2, + ACTIONS(2018), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1903), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(533), 8, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(923), 6, 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(1888), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -70321,7 +72586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1891), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -70332,71 +72597,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4130] = 23, + [4388] = 26, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(93), 1, + sym_number_literal, + ACTIONS(1679), 1, + sym_identifier, + STATE(544), 1, sym_comment, - ACTIONS(33), 1, + STATE(693), 1, + sym_string_literal, + STATE(733), 1, + sym_concatenated_string, + STATE(1099), 1, + sym__expression, + STATE(1966), 1, + sym_comma_expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 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, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_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_null, + [4504] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1900), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1903), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1906), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1912), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1915), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1918), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1921), 1, anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(2028), 1, + ACTIONS(2024), 1, aux_sym_preproc_def_token1, - ACTIONS(2030), 1, + ACTIONS(2027), 1, aux_sym_preproc_if_token1, - ACTIONS(2034), 1, + ACTIONS(2033), 1, sym_preproc_directive, ACTIONS(2036), 1, anon_sym_RBRACE, - STATE(795), 1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, + STATE(951), 1, + sym__field_declaration_list_item, + STATE(1328), 1, sym__declaration_specifiers, - ACTIONS(2032), 2, + ACTIONS(2030), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, + STATE(545), 2, + sym_comment, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(1909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(533), 8, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(923), 6, 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, + ACTIONS(1894), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -70406,7 +72768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(1897), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -70417,403 +72779,624 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4238] = 21, + [4624] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, ACTIONS(2038), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(546), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [4342] = 21, + [4740] = 29, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + ACTIONS(2000), 1, + aux_sym_preproc_def_token1, + ACTIONS(2002), 1, + aux_sym_preproc_if_token1, + ACTIONS(2008), 1, + sym_preproc_directive, + ACTIONS(2040), 1, + aux_sym_preproc_if_token2, + STATE(540), 1, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + STATE(547), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(944), 1, + sym__field_declaration_list_item, + STATE(1326), 1, + sym__declaration_specifiers, + ACTIONS(2006), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(945), 6, + 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, + ACTIONS(49), 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(47), 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, + [4862] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + ACTIONS(2014), 1, + aux_sym_preproc_def_token1, + ACTIONS(2016), 1, + aux_sym_preproc_if_token1, + ACTIONS(2020), 1, + sym_preproc_directive, + ACTIONS(2042), 1, + anon_sym_RBRACE, + STATE(545), 1, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + STATE(548), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(951), 1, + sym__field_declaration_list_item, + STATE(1328), 1, + sym__declaration_specifiers, + ACTIONS(2018), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(923), 6, + 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, + ACTIONS(49), 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(47), 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, + [4984] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - ACTIONS(2040), 1, + ACTIONS(2044), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(549), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [4446] = 21, + [5100] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - ACTIONS(2042), 1, + ACTIONS(2046), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(550), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [4550] = 21, + [5216] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - ACTIONS(2044), 1, + ACTIONS(2048), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(551), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [4654] = 23, + [5332] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1886), 1, + aux_sym_preproc_if_token2, + ACTIONS(1900), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1903), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1906), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1912), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1915), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1918), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1921), 1, anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(1986), 1, + ACTIONS(2050), 1, aux_sym_preproc_def_token1, - ACTIONS(1988), 1, + ACTIONS(2053), 1, aux_sym_preproc_if_token1, - ACTIONS(1994), 1, + ACTIONS(2059), 1, sym_preproc_directive, - ACTIONS(2046), 1, - aux_sym_preproc_if_token2, - STATE(795), 1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, + STATE(944), 1, + sym__field_declaration_list_item, + STATE(1326), 1, sym__declaration_specifiers, - ACTIONS(1992), 2, + ACTIONS(2056), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, + STATE(552), 2, + sym_comment, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(1909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(528), 8, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(945), 6, 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, + ACTIONS(1894), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -70823,7 +73406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(1897), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -70834,162 +73417,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4762] = 21, + [5452] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - ACTIONS(2048), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(553), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1042), 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(1687), 1, + sym_comma_expression, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [4866] = 22, + [5568] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(554), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1083), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1115), 1, sym__expression, - STATE(1883), 1, - sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -70999,332 +73594,349 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [4972] = 21, + [5681] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1376), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1988), 1, anon_sym_LPAREN2, - ACTIONS(2050), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(555), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(738), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_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_null, + [5794] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(93), 1, + sym_number_literal, + ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + STATE(556), 1, + sym_comment, + STATE(693), 1, + sym_string_literal, + STATE(733), 1, + sym_concatenated_string, + STATE(906), 1, + sym__expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [5076] = 23, + [5907] = 25, 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(1819), 1, - sym_identifier, - ACTIONS(2028), 1, - aux_sym_preproc_def_token1, - ACTIONS(2030), 1, - aux_sym_preproc_if_token1, - ACTIONS(2034), 1, - sym_preproc_directive, - ACTIONS(2052), 1, - anon_sym_RBRACE, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, - sym__declaration_specifiers, - ACTIONS(2032), 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(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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(534), 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, - [5184] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1972), 1, anon_sym_LPAREN2, - ACTIONS(2054), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(557), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(887), 1, + STATE(792), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [5288] = 22, + [6020] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1368), 1, + anon_sym_sizeof, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1972), 1, + anon_sym_LPAREN2, + STATE(558), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(1018), 1, + STATE(794), 1, sym__expression, - STATE(1685), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1364), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1974), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71334,79 +73946,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [5394] = 21, + [6133] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(559), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(963), 1, + STATE(780), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71416,160 +74034,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [5497] = 20, + [6246] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(2062), 1, anon_sym_LPAREN2, - STATE(735), 1, - sym_string_literal, - STATE(769), 1, + STATE(560), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(739), 1, sym__expression, - ACTIONS(89), 2, + STATE(742), 1, + sym_string_literal, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [5598] = 21, + [6359] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(561), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(961), 1, + STATE(793), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71579,79 +74210,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [5701] = 21, + [6472] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(727), 1, - sym__expression, - STATE(735), 1, + STATE(562), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(790), 1, + sym__expression, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71661,79 +74298,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [5804] = 21, + [6585] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(563), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(964), 1, + STATE(787), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71743,79 +74386,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [5907] = 21, + [6698] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(564), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(959), 1, + STATE(778), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71825,79 +74474,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6010] = 21, + [6811] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(565), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(966), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(908), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71907,79 +74562,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6113] = 21, + [6924] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(735), 1, - sym_string_literal, - STATE(967), 1, + STATE(566), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(738), 1, sym__expression, - ACTIONS(89), 2, + STATE(742), 1, + sym_string_literal, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -71989,79 +74650,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6216] = 21, + [7037] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(567), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(960), 1, + STATE(786), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72071,79 +74738,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6319] = 21, + [7150] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(568), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(968), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(909), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72153,79 +74826,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6422] = 21, + [7263] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(569), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(969), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(901), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72235,79 +74914,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6525] = 21, + [7376] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(570), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(970), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(998), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72317,161 +75002,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6628] = 21, + [7489] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(571), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(971), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1002), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 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(799), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 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, - [6731] = 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(683), 1, - sym_string_literal, - STATE(1101), 1, - sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72481,79 +75090,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6834] = 21, + [7602] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(572), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1000), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1012), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72563,79 +75178,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [6937] = 21, + [7715] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(573), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(992), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(750), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72645,160 +75266,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [7040] = 20, + [7828] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(2056), 1, + ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(574), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(736), 1, + STATE(788), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [7141] = 21, + [7941] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(575), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(737), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(820), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -72808,403 +75442,437 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [7244] = 20, + [8054] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(576), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(793), 1, + STATE(733), 1, + sym_concatenated_string, + 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1767), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [7345] = 20, + [8167] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1376), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1988), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(577), 1, + sym_comment, + STATE(693), 1, sym_string_literal, STATE(733), 1, + sym_concatenated_string, + STATE(749), 1, sym__expression, - ACTIONS(25), 2, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [7446] = 20, + [8280] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(723), 1, - sym__expression, - STATE(735), 1, + STATE(578), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(750), 1, + sym__expression, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [7547] = 20, + [8393] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(579), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(737), 1, + STATE(743), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [7648] = 21, + [8506] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1685), 1, + anon_sym_sizeof, + ACTIONS(1952), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1954), 1, + anon_sym_LPAREN2, + STATE(580), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(1086), 1, + STATE(985), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1683), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1958), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73214,160 +75882,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [7751] = 20, + [8619] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(581), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(723), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1091), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1767), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [7852] = 21, + [8732] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(582), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1025), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1043), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73377,79 +76058,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [7955] = 21, + [8845] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(583), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1106), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(815), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73459,79 +76146,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8058] = 21, + [8958] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(584), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(962), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(809), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73541,79 +76234,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8161] = 21, + [9071] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(585), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(998), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(805), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73623,79 +76322,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8264] = 21, + [9184] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(586), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(980), 1, + STATE(733), 1, + sym_concatenated_string, + 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, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73705,79 +76410,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8367] = 21, + [9297] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(587), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(965), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(801), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73787,79 +76498,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8470] = 21, + [9410] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + STATE(588), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(727), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(889), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1984), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73869,79 +76586,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8573] = 21, + [9523] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(589), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(977), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(796), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -73951,79 +76674,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8676] = 21, + [9636] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(2058), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(590), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(885), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1090), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74033,79 +76762,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8779] = 21, + [9749] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1376), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1988), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(591), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(886), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(803), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74115,79 +76850,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8882] = 21, + [9862] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(592), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(976), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(797), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74197,160 +76938,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [8985] = 20, + [9975] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1376), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1988), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(593), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(887), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(743), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [9086] = 21, + [10088] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(594), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(890), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(902), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74360,79 +77114,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [9189] = 21, + [10201] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1376), 1, + anon_sym_sizeof, + ACTIONS(1988), 1, + anon_sym_LPAREN2, + STATE(595), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(974), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(800), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1374), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1990), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74442,79 +77202,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [9292] = 21, + [10314] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1685), 1, + anon_sym_sizeof, + ACTIONS(1952), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1954), 1, + anon_sym_LPAREN2, + STATE(596), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(985), 1, + STATE(990), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1683), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1958), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74524,79 +77290,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [9395] = 21, + [10427] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(597), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(973), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1137), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74606,79 +77378,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [9498] = 21, + [10540] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, + anon_sym_LPAREN2, + STATE(598), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1087), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(901), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1699), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1773), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74688,160 +77466,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [9601] = 20, + [10653] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(599), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(763), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(896), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [9702] = 21, + [10766] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(600), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1079), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1138), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74851,79 +77642,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [9805] = 21, + [10879] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, + anon_sym_LPAREN2, + STATE(601), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1096), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1088), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1699), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1773), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -74933,565 +77730,613 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [9908] = 20, + [10992] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(602), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(868), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(738), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [10009] = 20, + [11105] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(603), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(770), 1, + STATE(789), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [10110] = 20, + [11218] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(2064), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(604), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(768), 1, + STATE(733), 1, + sym_concatenated_string, + 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(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [10211] = 20, + [11331] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(605), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(767), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1087), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [10312] = 20, + [11444] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(606), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(766), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1086), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [10413] = 20, + [11557] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(607), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(765), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1078), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [10514] = 21, + [11670] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, + anon_sym_LPAREN2, + STATE(608), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1097), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1077), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1699), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1773), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -75501,241 +78346,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [10617] = 20, + [11783] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(609), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(771), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1092), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [10718] = 20, + [11896] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1952), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(610), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(772), 1, + STATE(982), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1958), 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(700), 22, + STATE(699), 2, 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, - [10819] = 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(683), 1, - sym_string_literal, - STATE(1019), 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, + 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(840), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -75745,79 +78522,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [10922] = 21, + [12009] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, + anon_sym_LPAREN2, + STATE(611), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(990), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1075), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1699), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1773), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -75827,79 +78610,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [11025] = 21, + [12122] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, + anon_sym_LPAREN2, + STATE(612), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(972), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1074), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1699), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1773), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -75909,241 +78698,261 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [11128] = 20, + [12235] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(2060), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(613), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(885), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1072), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [11229] = 20, + [12348] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(614), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(886), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1135), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [11330] = 21, + [12461] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(615), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(987), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1082), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -76153,1051 +78962,1141 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [11433] = 20, + [12574] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(616), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(890), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(907), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [11534] = 20, + [12687] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(617), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(881), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(897), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [11635] = 20, + [12800] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(618), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(882), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1118), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [11736] = 20, + [12913] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1376), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1988), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(619), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(870), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(750), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [11837] = 20, + [13026] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(620), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(871), 1, + STATE(749), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [11938] = 20, + [13139] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1368), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1972), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(621), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(873), 1, + STATE(783), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1362), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1364), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1974), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12039] = 20, + [13252] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(622), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(874), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1008), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 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, - 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(1932), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12140] = 20, + [13365] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(623), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(875), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1049), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12241] = 20, + [13478] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(624), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(876), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1019), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12342] = 20, + [13591] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1376), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1988), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(625), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(877), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(816), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12443] = 20, + [13704] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(626), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(878), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(904), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12544] = 20, + [13817] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(627), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(879), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1130), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12645] = 21, + [13930] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(628), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1059), 1, + STATE(733), 1, + sym_concatenated_string, + 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(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -77207,79 +80106,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [12748] = 21, + [14043] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(629), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1112), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(888), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -77289,241 +80194,261 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [12851] = 20, + [14156] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1952), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(630), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(774), 1, + STATE(994), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [12952] = 20, + [14269] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1950), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(631), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(777), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1023), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [13053] = 21, + [14382] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1376), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2066), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(632), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1050), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(739), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(27), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1374), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1990), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -77533,79 +80458,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [13156] = 21, + [14495] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(633), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1021), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1024), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -77615,79 +80546,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [13259] = 21, + [14608] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(634), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(1063), 1, + STATE(750), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -77697,161 +80634,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [13362] = 21, + [14721] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(2068), 1, + anon_sym_LPAREN2, + STATE(635), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1027), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(894), 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, - 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(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 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, - [13465] = 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(683), 1, - sym_string_literal, - STATE(1103), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1699), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1773), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -77861,79 +80722,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [13568] = 21, + [14834] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(1051), 1, + STATE(636), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(738), 1, sym__expression, - ACTIONS(89), 2, + STATE(742), 1, + sym_string_literal, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -77943,160 +80810,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [13671] = 20, + [14947] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(637), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(797), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1093), 1, sym__expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1948), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [13772] = 21, + [15060] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(2070), 1, anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(1048), 1, + STATE(638), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(739), 1, sym__expression, - ACTIONS(89), 2, + STATE(742), 1, + sym_string_literal, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78106,79 +80986,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [13875] = 21, + [15173] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(639), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1045), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(888), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78188,79 +81074,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [13978] = 21, + [15286] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(640), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1036), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1021), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78270,79 +81162,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14081] = 21, + [15399] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2072), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(641), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1030), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(894), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78352,79 +81250,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14184] = 21, + [15512] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(642), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1040), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1020), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78434,79 +81338,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14287] = 21, + [15625] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(643), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1053), 1, + STATE(733), 1, + sym_concatenated_string, + 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(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78516,79 +81426,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14390] = 21, + [15738] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(644), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(868), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(898), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78598,79 +81514,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14493] = 21, + [15851] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(645), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1061), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(995), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78680,79 +81602,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14596] = 21, + [15964] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1701), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(646), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1066), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(897), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(895), 5, + STATE(914), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78762,79 +81690,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14699] = 21, + [16077] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(647), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(737), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1112), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78844,79 +81778,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14802] = 21, + [16190] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + STATE(648), 1, + sym_comment, + STATE(693), 1, + sym_string_literal, STATE(733), 1, + sym_concatenated_string, + STATE(743), 1, sym__expression, - STATE(735), 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(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -78926,79 +81866,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [14905] = 21, + [16303] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(2062), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(649), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(736), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1120), 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(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 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(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(799), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -79008,79 +81954,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [15008] = 21, + [16416] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1685), 1, + anon_sym_sizeof, + ACTIONS(1952), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1954), 1, + anon_sym_LPAREN2, + STATE(650), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(1074), 1, + STATE(984), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1683), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1958), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -79090,160 +82042,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [15111] = 20, + [16529] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(651), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(789), 1, + STATE(986), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [15212] = 21, + [16642] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(652), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1020), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1128), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -79253,808 +82218,877 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [15315] = 20, + [16755] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, ACTIONS(1370), 1, + sym_identifier, + ACTIONS(1661), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1982), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(653), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(727), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(892), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1767), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(730), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [15416] = 20, + [16868] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(654), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(790), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1015), 1, sym__expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1948), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [15517] = 20, + [16981] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(655), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(792), 1, + STATE(987), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [15618] = 20, + [17094] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(656), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(796), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1046), 1, sym__expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1948), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [15719] = 20, + [17207] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(657), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(780), 1, + STATE(743), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [15820] = 20, + [17320] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(658), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(798), 1, + STATE(988), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [15921] = 20, + [17433] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(659), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(805), 1, + STATE(989), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(821), 5, sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, + 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_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, + [17546] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(660), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(803), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1048), 1, sym__expression, + ACTIONS(23), 2, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1948), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(826), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [16123] = 20, + [17659] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1952), 1, + sym_identifier, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(661), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(801), 1, + 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1956), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [16224] = 21, + [17772] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1685), 1, + anon_sym_sizeof, + ACTIONS(1952), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1954), 1, + anon_sym_LPAREN2, + STATE(662), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(1070), 1, + STATE(992), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1683), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1958), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -80064,241 +83098,261 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [16327] = 20, + [17885] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1952), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(727), 1, - sym__expression, - STATE(735), 1, + STATE(663), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(993), 1, + sym__expression, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(821), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [16428] = 20, + [17998] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(664), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(737), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1069), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [16529] = 21, + [18111] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1661), 1, + anon_sym_sizeof, + ACTIONS(1982), 1, + anon_sym_LPAREN2, + STATE(665), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1098), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(891), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + sym_true, + sym_false, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1984), 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, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(730), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -80308,79 +83362,85 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [16632] = 21, + [18224] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(21), 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(93), 1, sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(666), 1, + sym_comment, + STATE(693), 1, sym_string_literal, - STATE(1111), 1, + STATE(733), 1, + sym_concatenated_string, + STATE(1136), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(23), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(27), 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, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(840), 5, + STATE(826), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -80390,323 +83450,173 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [16735] = 20, + [18337] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1701), 1, + anon_sym_sizeof, + ACTIONS(1763), 1, anon_sym_LPAREN2, + STATE(667), 1, + sym_comment, + STATE(693), 1, + sym_string_literal, STATE(733), 1, + sym_concatenated_string, + STATE(1068), 1, sym__expression, - STATE(735), 1, - sym_string_literal, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1699), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1767), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + STATE(699), 2, + sym__expression_not_binary, + sym_binary_expression, + 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(700), 22, - sym__expression_not_binary, + STATE(914), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(719), 14, 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, - [16836] = 20, + [18450] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(93), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1952), 1, sym_identifier, - ACTIONS(2064), 1, + ACTIONS(1954), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(668), 1, + sym_comment, + STATE(733), 1, + sym_concatenated_string, + STATE(742), 1, sym_string_literal, - STATE(736), 1, + STATE(983), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1956), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1958), 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(700), 22, + STATE(699), 2, 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, - [16937] = 21, - ACTIONS(3), 1, - sym_comment, - 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, - ACTIONS(2066), 1, - anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(736), 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, + 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(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 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, - [17040] = 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(683), 1, - sym_string_literal, - STATE(733), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - 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, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(821), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, + STATE(719), 14, sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, - sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, @@ -80716,38 +83626,41 @@ static const uint16_t ts_small_parse_table[] = { sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, - sym_concatenated_string, sym_null, - [17143] = 14, + [18563] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1697), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1705), 1, anon_sym_const, - ACTIONS(1701), 1, + ACTIONS(1709), 1, anon_sym_LPAREN2, - ACTIONS(1707), 1, + ACTIONS(1715), 1, anon_sym_STAR, - ACTIONS(1714), 1, + ACTIONS(1720), 1, anon_sym_EQ, - STATE(662), 1, + STATE(669), 1, + sym_comment, + STATE(673), 1, sym_string_literal, - STATE(811), 1, + STATE(848), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1720), 2, + ACTIONS(1728), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2068), 4, + ACTIONS(2074), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - 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(1710), 8, + ACTIONS(1718), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -80756,7 +83669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1718), 10, + ACTIONS(1724), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -80767,7 +83680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 11, + ACTIONS(1713), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -80779,7 +83692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 12, + ACTIONS(1707), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80792,131 +83705,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17231] = 6, + [18657] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 1, - sym_identifier, - STATE(665), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2074), 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(2072), 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, - [17302] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(742), 1, + STATE(670), 1, + sym_comment, + STATE(755), 1, sym_ms_call_modifier, - STATE(795), 1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1143), 1, + STATE(1169), 1, sym__declaration_specifiers, - STATE(132), 3, + STATE(422), 3, sym_function_definition, sym_declaration, sym_declaration_list, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(749), 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80926,7 +83780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -80937,66 +83791,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17403] = 21, + [18768] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, ACTIONS(2078), 1, anon_sym_LBRACE, - STATE(745), 1, + STATE(671), 1, + sym_comment, + STATE(760), 1, sym_ms_call_modifier, - STATE(795), 1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1154), 1, + STATE(1184), 1, sym__declaration_specifiers, - STATE(341), 3, + STATE(409), 3, sym_function_definition, sym_declaration, sym_declaration_list, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(749), 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81006,7 +83866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81017,15 +83877,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17504] = 6, + [18879] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(672), 1, sym_comment, + ACTIONS(1740), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_EQ, + anon_sym_COLON, + 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(1742), 32, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___attribute__, + anon_sym_LBRACK, + 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, + [18950] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(2080), 1, sym_identifier, - STATE(666), 2, - sym_string_literal, + STATE(673), 1, + sym_comment, + STATE(675), 1, aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, + STATE(680), 1, + sym_string_literal, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -81082,21 +84013,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17575] = 6, + [19029] = 25, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, ACTIONS(2086), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_comment, + STATE(758), 1, + sym_ms_call_modifier, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1182), 1, + sym__declaration_specifiers, + STATE(130), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(49), 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(47), 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, + [19140] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2080), 1, sym_identifier, - STATE(666), 2, - sym_string_literal, + STATE(675), 1, + sym_comment, + STATE(677), 1, aux_sym_concatenated_string_repeat1, - ACTIONS(2093), 5, + STATE(680), 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(2091), 16, + ACTIONS(2090), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81113,7 +84135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2089), 33, + ACTIONS(2088), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81147,146 +84169,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17646] = 21, + [19219] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2092), 1, anon_sym_LBRACE, - STATE(743), 1, + STATE(676), 1, + sym_comment, + STATE(754), 1, sym_ms_call_modifier, - STATE(795), 1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1155), 1, + STATE(1175), 1, sym__declaration_specifiers, - STATE(385), 3, + STATE(363), 3, sym_function_definition, sym_declaration, sym_declaration_list, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 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(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, - [17747] = 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(1819), 1, - sym_identifier, - ACTIONS(2098), 1, - anon_sym_LBRACE, - STATE(741), 1, - sym_ms_call_modifier, - STATE(795), 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(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(749), 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81296,7 +84244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81307,18 +84255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17848] = 5, + [19330] = 8, ACTIONS(3), 1, - sym_comment, - STATE(662), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2094), 1, + sym_identifier, + STATE(680), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(677), 2, + sym_comment, + aux_sym_concatenated_string_repeat1, + ACTIONS(2101), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1705), 17, + ACTIONS(2099), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81335,8 +84290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(1699), 33, + ACTIONS(2097), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81370,10 +84324,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17916] = 3, + [19407] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(673), 1, + sym_string_literal, + STATE(678), 1, sym_comment, - ACTIONS(2100), 17, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1713), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81391,7 +84357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2102), 38, + ACTIONS(1707), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81425,13 +84391,12 @@ 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, - [17979] = 3, + [19481] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(679), 1, sym_comment, ACTIONS(2104), 17, aux_sym_preproc_elif_token1, @@ -81490,10 +84455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18042] = 3, + [19550] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(680), 1, sym_comment, - ACTIONS(2108), 20, + ACTIONS(2108), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81508,13 +84477,10 @@ static const uint16_t ts_small_parse_table[] = { 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(2110), 34, + ACTIONS(2110), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81530,9 +84496,8 @@ 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, @@ -81549,10 +84514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18104] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [19619] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(681), 1, sym_comment, - ACTIONS(2112), 20, + ACTIONS(2112), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81567,13 +84541,10 @@ static const uint16_t ts_small_parse_table[] = { 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(2114), 34, + ACTIONS(2114), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81589,9 +84560,8 @@ 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, @@ -81608,8 +84578,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18166] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [19688] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(682), 1, sym_comment, ACTIONS(2116), 20, aux_sym_preproc_elif_token1, @@ -81667,8 +84646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18228] = 3, + [19756] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(683), 1, sym_comment, ACTIONS(2120), 20, aux_sym_preproc_elif_token1, @@ -81726,8 +84709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18290] = 3, + [19824] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(684), 1, sym_comment, ACTIONS(2124), 20, aux_sym_preproc_elif_token1, @@ -81785,8 +84772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18352] = 3, + [19892] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(685), 1, sym_comment, ACTIONS(2128), 20, aux_sym_preproc_elif_token1, @@ -81844,8 +84835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18414] = 3, + [19960] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(686), 1, sym_comment, ACTIONS(2132), 20, aux_sym_preproc_elif_token1, @@ -81903,8 +84898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18476] = 3, + [20028] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(687), 1, sym_comment, ACTIONS(2136), 20, aux_sym_preproc_elif_token1, @@ -81962,8 +84961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18538] = 3, + [20096] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(688), 1, sym_comment, ACTIONS(2140), 20, aux_sym_preproc_elif_token1, @@ -82021,8 +85024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18600] = 3, + [20164] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(689), 1, sym_comment, ACTIONS(2144), 20, aux_sym_preproc_elif_token1, @@ -82080,30 +85087,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18662] = 9, + [20232] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(690), 1, sym_comment, - ACTIONS(2158), 1, + ACTIONS(2148), 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(2150), 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, + [20300] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(691), 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, + [20368] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2166), 1, anon_sym___attribute__, - ACTIONS(2161), 1, + ACTIONS(2169), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2164), 1, + ACTIONS(2172), 1, anon_sym___declspec, - ACTIONS(2150), 5, + STATE(781), 1, + sym__declaration_modifiers, + STATE(692), 2, + sym_comment, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2158), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(682), 7, - sym__declaration_modifiers, + STATE(782), 5, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2152), 9, + ACTIONS(2160), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82113,7 +85251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2155), 10, + ACTIONS(2163), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82124,7 +85262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2148), 17, + ACTIONS(2156), 17, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -82142,20 +85280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [18733] = 6, + [20447] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2167), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2175), 1, sym_identifier, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(693), 1, + sym_comment, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2171), 15, + ACTIONS(2179), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82171,7 +85313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2169), 29, + ACTIONS(2177), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82201,10 +85343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18798] = 3, + [20518] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(694), 1, sym_comment, - ACTIONS(2173), 17, + ACTIONS(2181), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82222,7 +85368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2175), 34, + ACTIONS(2183), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82257,10 +85403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18857] = 3, + [20583] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(695), 1, sym_comment, - ACTIONS(2175), 21, + ACTIONS(1689), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -82282,7 +85432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2173), 30, + ACTIONS(1687), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -82313,10 +85463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [18916] = 3, + [20648] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(696), 1, sym_comment, - ACTIONS(1677), 21, + ACTIONS(2183), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -82338,7 +85492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1675), 30, + ACTIONS(2181), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -82369,10 +85523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [18975] = 3, + [20713] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(697), 1, sym_comment, - ACTIONS(1673), 21, + ACTIONS(1693), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -82394,7 +85552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1671), 30, + ACTIONS(1691), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -82425,274 +85583,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [19034] = 20, + [20778] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(369), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(141), 1, + STATE(334), 1, sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 2, - sym_declaration, + STATE(698), 1, + sym_comment, + STATE(727), 1, aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, + STATE(766), 1, 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, - [19126] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1747), 1, - anon_sym_RPAREN, - ACTIONS(1819), 1, - sym_identifier, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, - sym__declaration_specifiers, - 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(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, + STATE(781), 1, 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, - [19218] = 20, - 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, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(431), 1, - sym_compound_statement, - STATE(795), 1, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(710), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, - [19310] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(346), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 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(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82702,7 +85651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82713,10 +85662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19402] = 3, + [20882] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(699), 1, sym_comment, - ACTIONS(2177), 17, + ACTIONS(2185), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82734,7 +85687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2179), 33, + ACTIONS(2187), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82768,58 +85721,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19460] = 20, + [20946] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(700), 1, sym_comment, - ACTIONS(33), 1, + 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__, - ACTIONS(37), 1, + 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, + [21010] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(398), 1, + STATE(157), 1, sym_compound_statement, - STATE(795), 1, + STATE(701), 1, + sym_comment, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(694), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82829,7 +85848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82840,58 +85859,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19552] = 20, + [21114] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(503), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(388), 1, + STATE(315), 1, sym_compound_statement, - STATE(795), 1, + STATE(702), 1, + sym_comment, + STATE(705), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82901,7 +85927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82912,58 +85938,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19644] = 20, + [21218] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(325), 1, + STATE(155), 1, sym_compound_statement, - STATE(795), 1, + STATE(703), 1, + sym_comment, + STATE(708), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(712), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82973,7 +86006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82984,10 +86017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19736] = 3, + [21322] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(704), 1, sym_comment, - ACTIONS(2181), 17, + ACTIONS(2193), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83005,7 +86042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2183), 33, + ACTIONS(2195), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -83039,10 +86076,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19794] = 3, + [21386] = 25, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(503), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + STATE(385), 1, + sym_compound_statement, + STATE(705), 1, sym_comment, - ACTIONS(2185), 17, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [21490] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(706), 1, + sym_comment, + ACTIONS(2197), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83060,7 +86180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2187), 33, + ACTIONS(2199), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -83094,58 +86214,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19852] = 20, + [21554] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(503), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(310), 1, + STATE(377), 1, sym_compound_statement, - STATE(795), 1, + STATE(707), 1, + sym_comment, + STATE(710), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83155,7 +86282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -83166,58 +86293,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19944] = 20, + [21658] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(140), 1, + STATE(143), 1, sym_compound_statement, - STATE(795), 1, + STATE(708), 1, + sym_comment, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(688), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + ACTIONS(49), 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(47), 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, + [21762] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(43), 1, + anon_sym_LBRACE, + 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + STATE(421), 1, + sym_compound_statement, + STATE(709), 1, + sym_comment, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83227,7 +86440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -83238,113 +86451,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20036] = 3, - 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, - [20094] = 20, + [21866] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(503), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(426), 1, + STATE(325), 1, sym_compound_statement, - STATE(795), 1, + STATE(710), 1, + sym_comment, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + ACTIONS(49), 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(47), 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, + [21970] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1751), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1753), 1, + anon_sym_RPAREN, + ACTIONS(1825), 1, + sym_identifier, + STATE(711), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1221), 1, + sym__declaration_specifiers, + STATE(1700), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83354,7 +86597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -83365,10 +86608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20186] = 3, + [22072] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(712), 1, sym_comment, - ACTIONS(2193), 17, + ACTIONS(2201), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83386,7 +86633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2195), 33, + ACTIONS(2203), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -83420,58 +86667,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20244] = 20, + [22136] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(713), 1, sym_comment, - ACTIONS(33), 1, + 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__, - 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_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, + [22200] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(43), 1, + anon_sym_LBRACE, + 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(129), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(138), 1, + STATE(418), 1, sym_compound_statement, - STATE(795), 1, + STATE(714), 1, + sym_comment, + STATE(726), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(708), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83481,7 +86794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -83492,10 +86805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20336] = 3, + [22304] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(715), 1, sym_comment, - ACTIONS(2197), 17, + ACTIONS(2209), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83513,7 +86830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2199), 33, + ACTIONS(2211), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -83547,10 +86864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20394] = 3, + [22368] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(716), 1, sym_comment, - ACTIONS(2201), 17, + ACTIONS(2213), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83568,7 +86889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2203), 33, + ACTIONS(2215), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -83602,371 +86923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20452] = 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(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_RPAREN, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, - sym__declaration_specifiers, - STATE(1506), 1, - sym_variadic_parameter, - STATE(1670), 1, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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, - [20546] = 20, - 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, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(411), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(701), 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(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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, - [20638] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(147), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 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(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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, - [20730] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(381), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(691), 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(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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, - [20822] = 20, - 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, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(417), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 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(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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, - [20914] = 3, + [22432] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(717), 1, sym_comment, - ACTIONS(2209), 17, + ACTIONS(2217), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83984,7 +86948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2211), 33, + ACTIONS(2219), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -84018,130 +86982,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20972] = 20, + [22496] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(369), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(383), 1, + STATE(341), 1, sym_compound_statement, - STATE(795), 1, + STATE(718), 1, + sym_comment, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 2, + STATE(1011), 1, sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, - [21064] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(333), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(698), 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(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -84151,7 +87050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -84162,10 +87061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21156] = 3, + [22600] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(719), 1, sym_comment, - ACTIONS(2213), 17, + ACTIONS(1713), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84183,7 +87086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2215), 33, + ACTIONS(1707), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -84217,10 +87120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21214] = 3, + [22664] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(720), 1, sym_comment, - ACTIONS(2217), 17, + ACTIONS(2221), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84238,7 +87145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2219), 33, + ACTIONS(2223), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -84272,10 +87179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21272] = 3, + [22728] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(721), 1, sym_comment, - ACTIONS(2221), 17, + ACTIONS(2225), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84293,7 +87204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2223), 33, + ACTIONS(2227), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -84327,65 +87238,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21330] = 3, + [22792] = 25, 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_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2227), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(39), 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, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + STATE(139), 1, + sym_compound_statement, + STATE(701), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(722), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [22896] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1751), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2229), 1, + sym_identifier, + ACTIONS(2231), 1, 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, - [21388] = 3, + STATE(723), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1221), 1, + sym__declaration_specifiers, + STATE(1582), 1, + sym_variadic_parameter, + STATE(1700), 1, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [23000] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(724), 1, sym_comment, - ACTIONS(2229), 17, + ACTIONS(2233), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84403,7 +87421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2231), 33, + ACTIONS(2235), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -84437,10 +87455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21446] = 3, + [23064] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(725), 1, sym_comment, - ACTIONS(2233), 17, + ACTIONS(2237), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84458,7 +87480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2235), 33, + ACTIONS(2239), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -84492,10 +87514,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21504] = 3, + [23128] = 25, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(43), 1, + anon_sym_LBRACE, + 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + STATE(432), 1, + sym_compound_statement, + STATE(726), 1, sym_comment, - ACTIONS(2237), 17, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [23232] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(369), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + STATE(353), 1, + sym_compound_statement, + STATE(727), 1, + sym_comment, + STATE(741), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [23336] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(43), 1, + anon_sym_LBRACE, + 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + STATE(420), 1, + sym_compound_statement, + STATE(709), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(728), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [23440] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(369), 1, + anon_sym_LBRACE, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, + sym_identifier, + STATE(361), 1, + sym_compound_statement, + STATE(718), 1, + aux_sym__old_style_function_definition_repeat1, + STATE(729), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [23544] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(730), 1, + sym_comment, + ACTIONS(1713), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84513,7 +87855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2239), 33, + ACTIONS(1707), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -84547,8 +87889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21562] = 3, + [23608] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(731), 1, sym_comment, ACTIONS(2241), 17, aux_sym_preproc_elif_token1, @@ -84602,22 +87948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21620] = 8, + [23672] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(732), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2245), 16, + ACTIONS(2245), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84633,14 +87971,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(2247), 26, + 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, @@ -84649,6 +87990,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, @@ -84661,22 +88004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21687] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2257), 16, + [23736] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(733), 1, + sym_comment, + ACTIONS(2179), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84692,14 +88030,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(2259), 26, + ACTIONS(2177), 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, @@ -84708,6 +88049,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, @@ -84720,10 +88063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21754] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [23800] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(734), 1, sym_comment, - ACTIONS(2261), 16, + ACTIONS(2249), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84739,8 +88089,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(2263), 33, + ACTIONS(2251), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -84755,9 +88107,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, @@ -84772,58 +88124,63 @@ 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, - [21811] = 19, + [23864] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, + ACTIONS(1751), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(735), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, + STATE(1221), 1, sym__declaration_specifiers, - STATE(1715), 2, + STATE(1808), 2, sym_variadic_parameter, sym_parameter_declaration, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -84833,7 +88190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -84844,10 +88201,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21900] = 3, + [23963] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2253), 1, + anon_sym_EQ, + STATE(673), 1, + sym_string_literal, + STATE(736), 1, sym_comment, - ACTIONS(2265), 16, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2255), 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(1713), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84861,12 +88243,9 @@ 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, sym_identifier, - ACTIONS(2267), 33, + ACTIONS(1707), 18, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -84878,42 +88257,109 @@ 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_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, - [21957] = 8, + [24034] = 24, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1751), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2257), 1, + sym_identifier, + STATE(737), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1221), 1, + sym__declaration_specifiers, + STATE(1773), 1, + sym_variadic_parameter, + STATE(1808), 1, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [24135] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(738), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 16, + ACTIONS(2259), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84930,7 +88376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2271), 26, + ACTIONS(2261), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -84957,31 +88403,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22024] = 7, + [24208] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + STATE(734), 1, + sym_argument_list, + STATE(739), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_EQ, - STATE(662), 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(2275), 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, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2271), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84995,30 +88436,44 @@ 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, sym_identifier, - ACTIONS(1699), 18, + ACTIONS(2273), 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_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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22089] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24281] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(740), 1, sym_comment, - ACTIONS(2277), 16, + ACTIONS(2275), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -85035,7 +88490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2279), 33, + ACTIONS(2277), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -85069,57 +88524,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22146] = 20, + [24344] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2279), 1, + sym_identifier, + ACTIONS(2288), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(2291), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2294), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(2297), 1, + anon_sym_LBRACE, + ACTIONS(2302), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(2305), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(2308), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(2311), 1, anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2281), 1, - sym_identifier, - STATE(795), 1, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, + STATE(1011), 1, + sym_declaration, + STATE(1181), 1, sym__declaration_specifiers, - STATE(1715), 1, - sym_parameter_declaration, - STATE(1773), 1, - sym_variadic_parameter, - ACTIONS(43), 4, + STATE(741), 2, + sym_comment, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2299), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(2282), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -85129,7 +88589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2285), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -85140,64 +88600,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22237] = 3, + [24443] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(673), 1, + sym_string_literal, + STATE(742), 1, sym_comment, - ACTIONS(2285), 9, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2179), 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, + ACTIONS(2177), 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_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, + [24510] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + STATE(734), 1, + sym_argument_list, + STATE(743), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2314), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2283), 40, - anon_sym___extension__, - anon_sym_extern, + 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___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, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, sym_identifier, - [22294] = 3, + ACTIONS(2316), 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, + [24583] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(744), 1, sym_comment, - ACTIONS(2287), 16, + ACTIONS(2318), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -85214,7 +88747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2289), 33, + ACTIONS(2320), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -85248,22 +88781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22351] = 8, + [24646] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(745), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2291), 16, + ACTIONS(2322), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -85280,13 +88805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2293), 26, + ACTIONS(2324), 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, anon_sym_EQ_EQ, @@ -85294,7 +88820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85307,88 +88835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22418] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2304), 1, - anon_sym___attribute__, - ACTIONS(2307), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2310), 1, - anon_sym___declspec, - ACTIONS(2313), 1, - anon_sym_LBRACE, - ACTIONS(2318), 1, - sym_primitive_type, - ACTIONS(2321), 1, - anon_sym_enum, - ACTIONS(2324), 1, - anon_sym_struct, - ACTIONS(2327), 1, - anon_sym_union, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(734), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2315), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 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(2298), 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(2301), 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, - [22507] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24709] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(746), 1, sym_comment, - STATE(662), 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(2171), 15, + ACTIONS(2326), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -85402,10 +88860,12 @@ 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, sym_identifier, - ACTIONS(2169), 28, + ACTIONS(2328), 33, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -85417,7 +88877,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85433,19 +88897,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22568] = 8, + [24772] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(747), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2330), 16, @@ -85492,19 +88960,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22635] = 7, + [24845] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(748), 1, + sym_comment, + ACTIONS(2336), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2334), 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [24908] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + STATE(734), 1, + sym_argument_list, + STATE(749), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2338), 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, + sym_identifier, + ACTIONS(2340), 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, + [24981] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2255), 2, + STATE(750), 1, + sym_comment, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2334), 16, + ACTIONS(2342), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -85521,7 +89114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2336), 28, + ACTIONS(2344), 28, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -85550,20 +89143,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [22700] = 7, + [25052] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, anon_sym_EQ, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(751), 1, + sym_comment, + 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(1724), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85574,7 +89171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + ACTIONS(1713), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85587,7 +89184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 19, + ACTIONS(1707), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85607,13 +89204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22764] = 5, + [25122] = 7, ACTIONS(3), 1, - sym_comment, - STATE(739), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(773), 1, sym_type_qualifier, + STATE(752), 2, + sym_comment, aux_sym__type_definition_type_repeat1, - ACTIONS(2342), 9, + ACTIONS(2350), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -85623,7 +89224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2338), 17, + ACTIONS(2346), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -85641,7 +89242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(2340), 19, + ACTIONS(2348), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -85661,116 +89262,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22823] = 17, + [25187] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(753), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1245), 1, + STATE(1276), 1, sym__declaration_specifiers, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, - [22905] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1272), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -85780,7 +89322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -85791,51 +89333,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22987] = 17, + [25279] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(754), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1271), 1, + STATE(1301), 1, sym__declaration_specifiers, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -85845,7 +89393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -85856,51 +89404,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23069] = 17, + [25371] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(755), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1273), 1, + STATE(1302), 1, sym__declaration_specifiers, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -85910,7 +89464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -85921,51 +89475,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23151] = 17, + [25463] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(756), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1228), 1, + STATE(1274), 1, sym__declaration_specifiers, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -85975,7 +89535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -85986,51 +89546,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23233] = 17, + [25555] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(757), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1270), 1, + STATE(1278), 1, sym__declaration_specifiers, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -86040,7 +89606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -86051,51 +89617,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23315] = 17, + [25647] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(758), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1226), 1, + STATE(1298), 1, sym__declaration_specifiers, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -86105,7 +89677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -86116,51 +89688,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23397] = 17, + [25739] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(795), 1, + STATE(759), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1229), 1, + STATE(1294), 1, sym__declaration_specifiers, - ACTIONS(43), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -86170,7 +89748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -86181,104 +89759,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23479] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1723), 1, - anon_sym_COLON, - STATE(662), 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, - 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), 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, - [23542] = 16, + [25831] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 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(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1825), 1, sym_identifier, - STATE(787), 1, + STATE(760), 1, + sym_comment, + STATE(766), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym__type_specifier, - STATE(843), 1, + STATE(823), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(43), 4, + STATE(1300), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(682), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -86288,7 +89819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -86299,68 +89830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 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(2345), 26, - anon_sym_DASH, - anon_sym_PLUS, - 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, - 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, - [23674] = 7, + [25923] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(761), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_field_declaration_list, - STATE(830), 1, - sym_attribute_specifier, - ACTIONS(2351), 7, + ACTIONS(2355), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86368,9 +89845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2349), 34, + ACTIONS(2353), 38, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86402,29 +89880,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [23735] = 7, + [25982] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(762), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, - anon_sym_LBRACE, - STATE(784), 1, - sym_field_declaration_list, - STATE(807), 1, - sym_attribute_specifier, - ACTIONS(2357), 7, + ACTIONS(2359), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2355), 34, + anon_sym_LBRACE, + ACTIONS(2357), 38, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86456,23 +89934,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [23796] = 8, + [26041] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, + anon_sym_EQ, + ACTIONS(1722), 1, + anon_sym_COLON, + STATE(673), 1, + sym_string_literal, + STATE(763), 1, sym_comment, - ACTIONS(1714), 1, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1724), 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(1713), 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(1707), 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, + [26110] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, anon_sym_EQ, - ACTIONS(1716), 1, + ACTIONS(1726), 1, anon_sym_COLON, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(764), 1, + sym_comment, + 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(1724), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86483,7 +90027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + ACTIONS(1713), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86496,7 +90040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + ACTIONS(1707), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86512,21 +90056,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23859] = 3, + [26179] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(2365), 1, + anon_sym_LBRACE, + STATE(765), 1, sym_comment, - ACTIONS(2361), 7, + STATE(802), 1, + sym_field_declaration_list, + STATE(854), 1, + sym_attribute_specifier, + ACTIONS(2363), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2359), 38, + anon_sym_COLON, + ACTIONS(2361), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86558,14 +90113,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + sym_identifier, + [26246] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 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(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1825), 1, sym_identifier, - [23912] = 3, + STATE(692), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(766), 1, + sym_comment, + STATE(781), 1, + sym__declaration_modifiers, + STATE(798), 1, + sym__type_specifier, + STATE(823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(49), 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(47), 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, + [26335] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(2365), 1, + anon_sym_LBRACE, + STATE(767), 1, sym_comment, - ACTIONS(2347), 7, + STATE(814), 1, + sym_field_declaration_list, + STATE(839), 1, + sym_attribute_specifier, + ACTIONS(2369), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86573,10 +90206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2345), 38, + ACTIONS(2367), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86608,108 +90240,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23965] = 7, + [26402] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(768), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, - anon_sym_LBRACE, - STATE(786), 1, - sym_field_declaration_list, - STATE(828), 1, - sym_attribute_specifier, - ACTIONS(2365), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2363), 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, - [24026] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, - anon_sym_LBRACE, - STATE(804), 1, - sym_field_declaration_list, - STATE(838), 1, - sym_attribute_specifier, - ACTIONS(2369), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2355), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2367), 34, + 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(2353), 26, + anon_sym_DASH, + anon_sym_PLUS, 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, @@ -86718,24 +90280,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + 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, - [24087] = 8, + [26461] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, anon_sym_EQ, - ACTIONS(1727), 1, + ACTIONS(1733), 1, anon_sym_COLON, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(769), 1, + sym_comment, + 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(1724), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86746,7 +90325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + ACTIONS(1713), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86759,7 +90338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + ACTIONS(1707), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86775,22 +90354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24150] = 8, + [26530] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, anon_sym_EQ, - ACTIONS(2371), 1, + ACTIONS(1735), 1, anon_sym_COLON, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(770), 1, + sym_comment, + 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(1724), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86801,7 +90384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + ACTIONS(1713), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86814,7 +90397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + ACTIONS(1707), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86823,29 +90406,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24213] = 8, + [26599] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, anon_sym_EQ, - ACTIONS(1725), 1, + ACTIONS(2371), 1, anon_sym_COLON, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(771), 1, + sym_comment, + 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(1724), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86856,7 +90443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + ACTIONS(1713), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86869,7 +90456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + ACTIONS(1707), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86878,29 +90465,261 @@ 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_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24276] = 8, + [26668] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(2365), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_comment, + STATE(811), 1, + sym_field_declaration_list, + STATE(849), 1, + sym_attribute_specifier, + ACTIONS(2375), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2373), 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, + [26735] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(773), 1, + sym_comment, + ACTIONS(2379), 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(2377), 26, + anon_sym_DASH, + anon_sym_PLUS, + 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, + 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, + [26794] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(2365), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_comment, + STATE(817), 1, + sym_field_declaration_list, + STATE(837), 1, + sym_attribute_specifier, + ACTIONS(2383), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2381), 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, + [26861] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(2365), 1, + anon_sym_LBRACE, + STATE(775), 1, sym_comment, - ACTIONS(1714), 1, + STATE(804), 1, + sym_field_declaration_list, + STATE(853), 1, + sym_attribute_specifier, + ACTIONS(2387), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2385), 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, + [26928] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, anon_sym_EQ, - ACTIONS(1741), 1, + ACTIONS(1731), 1, anon_sym_COLON, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(776), 1, + sym_comment, + 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(1724), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86911,7 +90730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + ACTIONS(1713), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86924,7 +90743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + ACTIONS(1707), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86940,28 +90759,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24339] = 7, + [26997] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(777), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, - anon_sym_LBRACE, - STATE(802), 1, - sym_field_declaration_list, - STATE(817), 1, - sym_attribute_specifier, - ACTIONS(2375), 7, + ACTIONS(2391), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2373), 34, + ACTIONS(2389), 38, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86993,39 +90808,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24400] = 9, + [27055] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + ACTIONS(2397), 1, + anon_sym_PIPE, + ACTIONS(2399), 1, + anon_sym_CARET, + ACTIONS(2401), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(778), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2377), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 11, + ACTIONS(2314), 2, aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2395), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2316), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -87033,10 +90867,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87049,20 +90879,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24464] = 7, + [27141] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2411), 1, anon_sym_EQ, - STATE(662), 1, + STATE(673), 1, sym_string_literal, - ACTIONS(95), 5, + STATE(779), 1, + sym_comment, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2381), 10, + ACTIONS(2413), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87073,7 +90907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 13, + ACTIONS(1713), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87087,7 +90921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1699), 14, + ACTIONS(1707), 14, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -87102,44 +90936,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24524] = 13, + [27207] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(780), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2407), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 3, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 5, + ACTIONS(2314), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2271), 21, + ACTIONS(2316), 21, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -87161,55 +90999,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24596] = 14, + [27285] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(781), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2417), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2415), 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, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - STATE(720), 1, + 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, + [27343] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(782), 1, + sym_comment, + ACTIONS(2419), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1744), 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, + 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, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27401] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + anon_sym_PIPE, + ACTIONS(2399), 1, + anon_sym_CARET, + ACTIONS(2401), 1, + anon_sym_AMP, + ACTIONS(2425), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP_AMP, + ACTIONS(2429), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(783), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2407), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, + ACTIONS(2423), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2421), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87221,55 +91175,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24670] = 15, + [27493] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(784), 1, + sym_comment, + ACTIONS(1693), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1691), 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, + 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, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27551] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(785), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(1689), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1687), 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, + 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, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27609] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, + ACTIONS(2397), 1, + anon_sym_PIPE, + ACTIONS(2399), 1, + anon_sym_CARET, + ACTIONS(2401), 1, anon_sym_AMP, - STATE(720), 1, + ACTIONS(2427), 1, + anon_sym_AMP_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(786), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2314), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2407), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2316), 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_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -87282,49 +91349,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24746] = 16, + [27697] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, + ACTIONS(2399), 1, anon_sym_CARET, - STATE(720), 1, + ACTIONS(2401), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(787), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2407), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2269), 3, + ACTIONS(2314), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2377), 3, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 19, + ACTIONS(2316), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -87344,50 +91415,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24824] = 17, + [27781] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_PIPE, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(788), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, + ACTIONS(2395), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2314), 11, aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2271), 19, + anon_sym_EQ, + ACTIONS(2316), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -87395,6 +91458,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87407,59 +91474,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24904] = 18, + [27851] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, ACTIONS(2397), 1, anon_sym_PIPE, ACTIONS(2399), 1, + anon_sym_CARET, + ACTIONS(2401), 1, + anon_sym_AMP, + ACTIONS(2425), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2427), 1, anon_sym_AMP_AMP, - STATE(720), 1, + ACTIONS(2429), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(789), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2407), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, + ACTIONS(2433), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 18, + ACTIONS(2431), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87471,40 +91544,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24986] = 11, + [27943] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + ACTIONS(2401), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(790), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2389), 2, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 3, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 7, + ACTIONS(2314), 4, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2316), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -87512,10 +91597,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87528,51 +91609,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25054] = 10, + [28025] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + ACTIONS(2397), 1, + anon_sym_PIPE, + ACTIONS(2399), 1, + anon_sym_CARET, + ACTIONS(2401), 1, + anon_sym_AMP, + ACTIONS(2425), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP_AMP, + ACTIONS(2429), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(791), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2377), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 9, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2437), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2395), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2435), 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_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, @@ -87584,110 +91679,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1671), 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, - 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, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25172] = 20, + [28117] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_PIPE, - ACTIONS(2399), 1, - anon_sym_AMP_AMP, - ACTIONS(2405), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2407), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(792), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2395), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2314), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2377), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 16, + ACTIONS(2316), 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, @@ -87699,159 +91739,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1675), 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, - 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, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2411), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2409), 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, - 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, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25362] = 20, + [28189] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_PIPE, - ACTIONS(2399), 1, - anon_sym_AMP_AMP, - ACTIONS(2405), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2407), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(793), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2403), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2405), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2407), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2415), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2377), 3, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2413), 16, + ACTIONS(2314), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2316), 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, @@ -87863,61 +91803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25448] = 20, + [28269] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_PIPE, - ACTIONS(2399), 1, - anon_sym_AMP_AMP, - ACTIONS(2405), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2407), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(794), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2393), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2409), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2419), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2377), 3, + ACTIONS(2395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2417), 16, + ACTIONS(2314), 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(2316), 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, @@ -87929,14 +91864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25534] = 5, + [28343] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - STATE(814), 1, + STATE(795), 1, + sym_comment, + STATE(859), 1, sym_attribute_specifier, - ACTIONS(2423), 7, + ACTIONS(2441), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87944,7 +91883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2421), 34, + ACTIONS(2439), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -87979,47 +91918,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25589] = 15, + [28404] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2429), 1, + ACTIONS(2447), 1, + anon_sym_CARET, + ACTIONS(2449), 1, anon_sym_AMP, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(796), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2314), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2443), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2453), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2457), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2269), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2427), 3, + ACTIONS(2445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 19, + ACTIONS(2316), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -88039,30 +91983,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25664] = 9, + [28487] = 20, 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(2441), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2314), 1, + anon_sym_EQ, + ACTIONS(2447), 1, + anon_sym_CARET, + ACTIONS(2449), 1, + anon_sym_AMP, + ACTIONS(2459), 1, + anon_sym_AMP_AMP, + ACTIONS(2461), 1, + anon_sym_PIPE, + STATE(734), 1, + sym_argument_list, + STATE(797), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2453), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2316), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - STATE(682), 7, + 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, + [28574] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + STATE(781), 1, sym__declaration_modifiers, + STATE(798), 1, + sym_comment, + STATE(812), 1, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2465), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(782), 5, 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -88072,7 +92089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2439), 9, + ACTIONS(2463), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88082,7 +92099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___vectorcall, anon_sym_LBRACK, sym_identifier, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -88093,14 +92110,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25727] = 5, + [28647] = 16, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + STATE(734), 1, + sym_argument_list, + STATE(799), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2453), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2314), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2316), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - STATE(832), 1, + 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, + [28726] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + STATE(734), 1, + sym_argument_list, + STATE(800), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2314), 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(2316), 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, + [28795] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_AMP, + STATE(734), 1, + sym_argument_list, + STATE(801), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2453), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2314), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2316), 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, + [28876] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + STATE(802), 1, + sym_comment, + STATE(841), 1, sym_attribute_specifier, - ACTIONS(2445), 7, + ACTIONS(2469), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88108,7 +92314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2443), 34, + ACTIONS(2467), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -88143,14 +92349,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25782] = 5, + [28937] = 19, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2314), 1, + anon_sym_EQ, + ACTIONS(2447), 1, + anon_sym_CARET, + ACTIONS(2449), 1, + anon_sym_AMP, + ACTIONS(2461), 1, + anon_sym_PIPE, + STATE(734), 1, + sym_argument_list, + STATE(803), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2453), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2316), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - STATE(810), 1, + 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, + [29022] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + STATE(804), 1, + sym_comment, + STATE(851), 1, sym_attribute_specifier, - ACTIONS(2449), 7, + ACTIONS(2473), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88158,7 +92434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2447), 34, + ACTIONS(2471), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -88193,14 +92469,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25837] = 5, + [29083] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + STATE(734), 1, + sym_argument_list, + STATE(805), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2453), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2314), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2316), 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, + [29160] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + STATE(781), 1, + sym__declaration_modifiers, + STATE(806), 1, sym_comment, - ACTIONS(33), 1, + STATE(808), 1, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2477), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + ACTIONS(49), 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(2475), 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(47), 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, + [29233] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - STATE(820), 1, + STATE(807), 1, + sym_comment, + STATE(850), 1, sym_attribute_specifier, - ACTIONS(2453), 7, + ACTIONS(2481), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88208,7 +92610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2451), 34, + ACTIONS(2479), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -88243,17 +92645,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25892] = 5, + [29294] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + STATE(692), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(808), 1, sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2459), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2457), 7, + ACTIONS(2485), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + ACTIONS(49), 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(47), 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, + [29367] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + STATE(734), 1, + sym_argument_list, + STATE(809), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2314), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2316), 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, + [29440] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + STATE(810), 1, + sym_comment, + STATE(840), 1, + sym_attribute_specifier, + ACTIONS(2489), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88261,10 +92784,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2455), 31, + ACTIONS(2487), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -88273,6 +92795,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, @@ -88293,14 +92819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25947] = 5, + [29501] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - STATE(815), 1, + STATE(811), 1, + sym_comment, + STATE(833), 1, sym_attribute_specifier, - ACTIONS(2464), 7, + ACTIONS(2493), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88308,7 +92838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2462), 34, + ACTIONS(2491), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -88343,30 +92873,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [26002] = 9, + [29562] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2468), 5, + STATE(692), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(781), 1, + sym__declaration_modifiers, + STATE(812), 1, + sym_comment, + ACTIONS(2497), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(781), 7, - sym__declaration_modifiers, + STATE(782), 5, 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, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -88376,7 +92912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2466), 9, + ACTIONS(2495), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88386,7 +92922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___vectorcall, anon_sym_LBRACK, sym_identifier, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -88397,22 +92933,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26065] = 5, + [29635] = 22, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2437), 1, + anon_sym_EQ, + ACTIONS(2447), 1, + anon_sym_CARET, + ACTIONS(2449), 1, + anon_sym_AMP, + ACTIONS(2459), 1, + anon_sym_AMP_AMP, + ACTIONS(2461), 1, + anon_sym_PIPE, + ACTIONS(2499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_QMARK, + STATE(734), 1, + sym_argument_list, + STATE(813), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(819), 1, - sym_attribute_specifier, - ACTIONS(2472), 7, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2453), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2445), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2435), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + 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, + [29726] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + STATE(814), 1, + sym_comment, + STATE(835), 1, + sym_attribute_specifier, + ACTIONS(2505), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2470), 34, + ACTIONS(2503), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -88447,28 +93056,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [26120] = 9, + [29787] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(815), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2427), 3, + ACTIONS(2443), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2314), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88477,7 +93091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2316), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -88501,59 +93115,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26183] = 18, + [29858] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(2429), 1, + ACTIONS(2447), 1, + anon_sym_CARET, + ACTIONS(2449), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2476), 1, + ACTIONS(2461), 1, anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_CARET, - STATE(720), 1, + ACTIONS(2499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(816), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2443), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2453), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2457), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, + ACTIONS(2445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 18, + ACTIONS(2431), 16, 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, @@ -88564,40 +93184,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26264] = 9, + [29949] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2482), 5, + STATE(817), 1, + sym_comment, + STATE(844), 1, + sym_attribute_specifier, + ACTIONS(2509), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(682), 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(2507), 34, 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(2480), 9, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88605,10 +93214,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, @@ -88618,141 +93228,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26327] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(2429), 1, - anon_sym_AMP, - ACTIONS(2476), 1, - anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_CARET, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2431), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2271), 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, - [26406] = 20, + 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, + [30010] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_EQ, - ACTIONS(2429), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_AMP_AMP, - ACTIONS(2476), 1, - anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_CARET, - ACTIONS(2484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2486), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2431), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2413), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, 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, - [26491] = 5, - ACTIONS(3), 1, + STATE(818), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(826), 1, + STATE(858), 1, sym_attribute_specifier, - ACTIONS(2490), 7, + ACTIONS(2513), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88760,7 +93257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2488), 34, + ACTIONS(2511), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -88795,40 +93292,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [26546] = 9, + [30071] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2494), 5, + STATE(819), 1, + sym_comment, + STATE(852), 1, + sym_attribute_specifier, + ACTIONS(2517), 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(2515), 34, 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(2492), 9, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88836,10 +93322,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, @@ -88849,181 +93336,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26609] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2429), 1, - anon_sym_AMP, - ACTIONS(2478), 1, - anon_sym_CARET, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2431), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2271), 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, - [26686] = 20, + 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, + [30132] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2423), 1, anon_sym_EQ, - ACTIONS(2429), 1, + ACTIONS(2447), 1, + anon_sym_CARET, + ACTIONS(2449), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(2459), 1, anon_sym_AMP_AMP, - ACTIONS(2476), 1, + ACTIONS(2461), 1, anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_CARET, - ACTIONS(2484), 1, + ACTIONS(2499), 1, anon_sym_PIPE_PIPE, - ACTIONS(2486), 1, + ACTIONS(2501), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2431), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 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, - [26771] = 14, - ACTIONS(3), 1, + STATE(820), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2443), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2453), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2457), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, + ACTIONS(2445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2421), 16, 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, @@ -89034,12 +93415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26844] = 5, + [30223] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2273), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2253), 1, anon_sym_EQ, - ACTIONS(2275), 10, + STATE(821), 1, + sym_comment, + ACTIONS(2255), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89050,7 +93435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 13, + ACTIONS(1713), 13, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -89064,7 +93449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 19, + ACTIONS(1707), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -89084,144 +93469,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [26899] = 20, + [30284] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 2, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2419), 1, - anon_sym_EQ, - ACTIONS(2429), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_AMP_AMP, - ACTIONS(2476), 1, - anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_CARET, - ACTIONS(2484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2486), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2431), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2417), 16, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2521), 7, 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, - [26984] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2427), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 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(2271), 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_LBRACK_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, - [27049] = 5, + ACTIONS(2519), 31, + 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_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, + [30343] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2526), 1, + sym_identifier, + ACTIONS(2533), 1, + sym_primitive_type, + STATE(823), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(825), 1, - sym_attribute_specifier, - ACTIONS(2498), 7, + STATE(855), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2529), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2496), 34, + ACTIONS(2531), 29, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -89230,10 +93559,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, @@ -89252,82 +93577,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [27104] = 11, + [30407] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(824), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2271), 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, - [27171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(829), 1, - sym_attribute_specifier, - ACTIONS(2502), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2537), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2500), 34, + ACTIONS(2535), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -89360,72 +93628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27226] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2271), 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, - [27297] = 5, + [30463] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(825), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(836), 1, - sym_attribute_specifier, - ACTIONS(2506), 7, + ACTIONS(2541), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89433,9 +93643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2504), 34, + ACTIONS(2539), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -89468,57 +93679,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27352] = 3, + [30519] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1720), 1, + anon_sym_EQ, + STATE(826), 1, sym_comment, - ACTIONS(2510), 7, + ACTIONS(1724), 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(1713), 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(1707), 19, anon_sym_COMMA, anon_sym_RPAREN, 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(2508), 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, + 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, - [27402] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [30579] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(827), 1, sym_comment, - ACTIONS(2514), 7, + ACTIONS(2545), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89526,7 +93747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2512), 35, + ACTIONS(2543), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89562,10 +93783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27452] = 3, + [30635] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(828), 1, sym_comment, - ACTIONS(2518), 7, + ACTIONS(2549), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89573,7 +93798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2516), 35, + ACTIONS(2547), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89609,10 +93834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27502] = 3, + [30691] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(829), 1, sym_comment, - ACTIONS(2522), 7, + ACTIONS(2553), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89620,7 +93849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2520), 35, + ACTIONS(2551), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89656,17 +93885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27552] = 5, + [30747] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(830), 1, sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2526), 7, + ACTIONS(2557), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89674,7 +93900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2524), 30, + ACTIONS(2555), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89686,55 +93912,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [27606] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2532), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2530), 30, - 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_static, anon_sym_auto, @@ -89753,18 +93934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [27660] = 5, + [30803] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(831), 1, sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2536), 7, + ACTIONS(2561), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89772,7 +93951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2534), 30, + ACTIONS(2559), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89784,6 +93963,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, @@ -89802,11 +93985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [27714] = 3, + [30859] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(832), 1, sym_comment, - ACTIONS(2540), 7, + ACTIONS(2565), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89814,7 +94002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2538), 35, + ACTIONS(2563), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89850,10 +94038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27764] = 3, + [30915] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(833), 1, sym_comment, - ACTIONS(2544), 7, + ACTIONS(2569), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89861,7 +94053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2542), 35, + ACTIONS(2567), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89897,17 +94089,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27814] = 5, + [30971] = 7, ACTIONS(3), 1, - sym_comment, - STATE(813), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2550), 4, + STATE(834), 1, + sym_comment, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2548), 7, + ACTIONS(2573), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89915,7 +94111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2546), 30, + ACTIONS(2571), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89946,10 +94142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [27868] = 3, + [31031] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(835), 1, sym_comment, - ACTIONS(2554), 7, + ACTIONS(2577), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89957,7 +94157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2552), 35, + ACTIONS(2575), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89993,17 +94193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27918] = 5, + [31087] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(836), 1, sym_comment, - STATE(831), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2558), 7, + ACTIONS(2581), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90011,7 +94208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2556), 30, + ACTIONS(2579), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90023,6 +94220,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, @@ -90041,11 +94242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [27972] = 3, + [31143] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(837), 1, sym_comment, - ACTIONS(2564), 7, + ACTIONS(2585), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90053,7 +94259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2562), 35, + ACTIONS(2583), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90089,10 +94295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28022] = 3, + [31199] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(838), 1, sym_comment, - ACTIONS(2568), 7, + ACTIONS(2589), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90100,7 +94310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2566), 35, + ACTIONS(2587), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90136,10 +94346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28072] = 3, + [31255] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(839), 1, sym_comment, - ACTIONS(2558), 7, + ACTIONS(2593), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90147,7 +94361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2556), 35, + ACTIONS(2591), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90183,10 +94397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28122] = 3, + [31311] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(840), 1, sym_comment, - ACTIONS(2572), 7, + ACTIONS(2597), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90194,7 +94412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2570), 35, + ACTIONS(2595), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90230,10 +94448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28172] = 3, + [31367] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(841), 1, sym_comment, - ACTIONS(2576), 7, + ACTIONS(2601), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90241,7 +94463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2574), 35, + ACTIONS(2599), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90277,10 +94499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28222] = 3, + [31423] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(842), 1, sym_comment, - ACTIONS(2580), 7, + ACTIONS(2605), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90288,7 +94514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2578), 35, + ACTIONS(2603), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90324,10 +94550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28272] = 3, + [31479] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(843), 1, sym_comment, - ACTIONS(2584), 7, + ACTIONS(2609), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90335,7 +94565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2582), 35, + ACTIONS(2607), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90371,10 +94601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28322] = 3, + [31535] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(844), 1, sym_comment, - ACTIONS(2588), 7, + ACTIONS(2613), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90382,7 +94616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2586), 35, + ACTIONS(2611), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90418,10 +94652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28372] = 3, + [31591] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(845), 1, sym_comment, - ACTIONS(2592), 7, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2617), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90429,7 +94674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2590), 35, + ACTIONS(2615), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90441,10 +94686,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, @@ -90463,12 +94704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28422] = 3, + [31651] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(846), 1, sym_comment, - ACTIONS(2596), 7, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2621), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90476,7 +94727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2594), 35, + ACTIONS(2619), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90488,10 +94739,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, @@ -90510,20 +94757,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28472] = 3, + [31711] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2623), 1, + anon_sym_LPAREN2, + STATE(847), 1, sym_comment, - ACTIONS(2600), 7, + STATE(848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1718), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2598), 35, + ACTIONS(1705), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90535,10 +94793,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, @@ -90557,12 +94811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28522] = 3, + [31773] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(848), 1, sym_comment, - ACTIONS(2604), 7, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2628), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90570,7 +94834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2602), 35, + ACTIONS(2626), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90582,10 +94846,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, @@ -90604,19 +94864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28572] = 5, + [31833] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(849), 1, sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2608), 7, + ACTIONS(2632), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90624,7 +94880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2606), 30, + ACTIONS(2630), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90636,6 +94892,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, @@ -90654,11 +94914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [28626] = 3, + [31889] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(850), 1, sym_comment, - ACTIONS(2612), 7, + ACTIONS(2636), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90666,7 +94931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2610), 35, + ACTIONS(2634), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90702,10 +94967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28676] = 3, + [31945] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(851), 1, sym_comment, - ACTIONS(2616), 7, + ACTIONS(2640), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90713,7 +94982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2614), 35, + ACTIONS(2638), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90749,17 +95018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28726] = 5, + [32001] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(852), 1, sym_comment, - STATE(812), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2622), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2620), 7, + ACTIONS(2644), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90767,7 +95033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2618), 30, + ACTIONS(2642), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90779,6 +95045,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, @@ -90797,27 +95067,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [28780] = 6, + [32057] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(853), 1, sym_comment, - ACTIONS(2455), 1, - sym_primitive_type, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2459), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2627), 6, + ACTIONS(2648), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2624), 30, + anon_sym_COLON, + ACTIONS(2646), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90829,6 +95096,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, @@ -90847,11 +95118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [28836] = 3, + [32113] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(854), 1, sym_comment, - ACTIONS(2632), 7, + ACTIONS(2652), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90859,7 +95135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2630), 35, + ACTIONS(2650), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90895,18 +95171,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28886] = 3, + [32169] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2519), 1, + sym_primitive_type, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(855), 1, sym_comment, - ACTIONS(2636), 7, + ACTIONS(2523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2657), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2634), 35, + ACTIONS(2654), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90918,10 +95206,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, @@ -90940,12 +95224,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28936] = 3, + [32231] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(845), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(856), 1, sym_comment, - ACTIONS(2640), 7, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2662), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90953,7 +95247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2638), 35, + ACTIONS(2660), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90965,10 +95259,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, @@ -90987,12 +95277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28986] = 3, + [32291] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(846), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(857), 1, sym_comment, - ACTIONS(2644), 7, + ACTIONS(45), 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, @@ -91000,7 +95300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2642), 35, + ACTIONS(2664), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91012,10 +95312,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, @@ -91034,77 +95330,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [29036] = 5, + [32351] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(858), 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, + ACTIONS(2670), 7, 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, - [29090] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, - anon_sym_LPAREN2, - STATE(811), 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, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1697), 30, + ACTIONS(2668), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91116,6 +95358,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, @@ -91134,11 +95380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [29146] = 3, + [32407] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(859), 1, sym_comment, - ACTIONS(2651), 7, + ACTIONS(2674), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -91146,7 +95397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2649), 35, + ACTIONS(2672), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91182,28 +95433,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29196] = 7, + [32463] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2662), 1, - sym_primitive_type, - STATE(835), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(834), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2660), 4, + STATE(860), 1, + sym_comment, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2656), 6, + ACTIONS(2541), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2658), 29, + anon_sym_COLON, + ACTIONS(2539), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91233,10 +95485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29254] = 3, + sym_identifier, + [32523] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(861), 1, sym_comment, - ACTIONS(2666), 7, + ACTIONS(2678), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -91244,7 +95501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2664), 35, + ACTIONS(2676), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91280,12 +95537,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29304] = 3, + [32579] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2682), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2668), 40, + STATE(862), 1, + sym_comment, + ACTIONS(2680), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91326,12 +95587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29353] = 3, + [32634] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2686), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1300), 40, + STATE(863), 1, + sym_comment, + ACTIONS(2684), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91372,12 +95637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29402] = 3, + [32689] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2690), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2672), 40, + STATE(864), 1, + sym_comment, + ACTIONS(2688), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91418,12 +95687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29451] = 3, + [32744] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2678), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2694), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2676), 40, + STATE(865), 1, + sym_comment, + ACTIONS(2692), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91464,12 +95737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29500] = 3, + [32799] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1276), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 40, + STATE(866), 1, + sym_comment, + ACTIONS(1274), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91510,12 +95787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29549] = 3, + [32854] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1248), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1340), 40, + STATE(867), 1, + sym_comment, + ACTIONS(1246), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91556,12 +95837,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29598] = 3, + [32909] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2698), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1296), 40, + STATE(868), 1, + sym_comment, + ACTIONS(2696), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91602,12 +95887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29647] = 3, + [32964] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2702), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2680), 40, + STATE(869), 1, + sym_comment, + ACTIONS(2700), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91648,12 +95937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29696] = 3, + [33019] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2706), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2684), 40, + STATE(870), 1, + sym_comment, + ACTIONS(2704), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91694,12 +95987,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29745] = 3, + [33074] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2710), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2688), 40, + STATE(871), 1, + sym_comment, + ACTIONS(2708), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91740,12 +96037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29794] = 3, + [33129] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2694), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2714), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2692), 40, + STATE(872), 1, + sym_comment, + ACTIONS(2712), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91786,12 +96087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29843] = 3, + [33184] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2718), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 40, + STATE(873), 1, + sym_comment, + ACTIONS(2716), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91832,12 +96137,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29892] = 3, + [33239] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1288), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1248), 40, + STATE(874), 1, + sym_comment, + ACTIONS(1286), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91878,12 +96187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29941] = 3, + [33294] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2722), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 40, + STATE(875), 1, + sym_comment, + ACTIONS(2720), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91924,12 +96237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29990] = 3, + [33349] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2726), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2700), 40, + STATE(876), 1, + sym_comment, + ACTIONS(2724), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91970,12 +96287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30039] = 3, + [33404] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2706), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1320), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 40, + STATE(877), 1, + sym_comment, + ACTIONS(1318), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92016,12 +96337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30088] = 3, + [33459] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2730), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2708), 40, + STATE(878), 1, + sym_comment, + ACTIONS(2728), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92062,12 +96387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30137] = 3, + [33514] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2734), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2712), 40, + STATE(879), 1, + sym_comment, + ACTIONS(2732), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92108,39 +96437,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30186] = 10, + [33569] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1316), 1, + anon_sym_LBRACK_LBRACK, + STATE(880), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1314), 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, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2716), 1, - anon_sym_SEMI, - ACTIONS(2494), 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(2492), 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_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, @@ -92149,8 +96482,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33624] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1340), 1, + anon_sym_LBRACK_LBRACK, + STATE(881), 1, + sym_comment, + ACTIONS(1338), 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, + 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, @@ -92160,27 +96524,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30248] = 8, + 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, + [33679] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2722), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2740), 1, anon_sym___attribute__, - ACTIONS(2725), 1, + ACTIONS(2743), 1, anon_sym_LBRACE, - ACTIONS(2727), 1, + ACTIONS(2745), 1, anon_sym_COLON, - STATE(808), 1, + STATE(838), 1, sym_attribute_specifier, - STATE(909), 1, + STATE(882), 1, + sym_comment, + STATE(925), 1, sym_enumerator_list, - ACTIONS(2720), 6, + ACTIONS(2738), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2718), 29, + ACTIONS(2736), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -92210,29 +96591,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [30306] = 10, + [33743] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2747), 1, anon_sym_SEMI, - ACTIONS(2494), 2, + STATE(781), 1, + sym__declaration_modifiers, + STATE(808), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(883), 1, + sym_comment, + ACTIONS(2477), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(791), 7, - sym__declaration_modifiers, + STATE(782), 5, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2492), 8, + ACTIONS(2475), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -92241,7 +96628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92251,7 +96638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -92262,29 +96649,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30368] = 10, + [33815] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2731), 1, + ACTIONS(2749), 1, anon_sym_SEMI, - ACTIONS(2494), 2, + STATE(781), 1, + sym__declaration_modifiers, + STATE(808), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(884), 1, + sym_comment, + ACTIONS(2477), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(791), 7, - sym__declaration_modifiers, + STATE(782), 5, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2492), 8, + ACTIONS(2475), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -92293,7 +96686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92303,7 +96696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -92314,29 +96707,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30430] = 10, + [33887] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 1, + ACTIONS(2751), 1, anon_sym_SEMI, - ACTIONS(2494), 2, + STATE(781), 1, + sym__declaration_modifiers, + STATE(808), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(885), 1, + sym_comment, + ACTIONS(2477), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(791), 7, - sym__declaration_modifiers, + STATE(782), 5, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2492), 8, + ACTIONS(2475), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -92345,7 +96744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92355,7 +96754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(47), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -92366,96 +96765,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30492] = 9, + [33959] = 14, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(1102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2753), 1, + anon_sym_SEMI, + STATE(781), 1, + sym__declaration_modifiers, + STATE(808), 1, + aux_sym__declaration_specifiers_repeat1, + STATE(886), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2477), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(782), 5, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + ACTIONS(2475), 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(49), 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(47), 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, + [34031] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2437), 1, + anon_sym_EQ, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2269), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2763), 1, + anon_sym_AMP_AMP, + ACTIONS(2765), 1, anon_sym_PIPE, + ACTIONS(2767), 1, anon_sym_CARET, + ACTIONS(2769), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2271), 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, + ACTIONS(2779), 1, 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, - [30551] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(887), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2245), 13, + ACTIONS(2757), 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(2771), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2773), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2775), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2777), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2247), 19, + ACTIONS(2759), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2435), 12, 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, @@ -92466,30 +96889,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30610] = 11, + [34120] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(888), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2259), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -92498,7 +96923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2261), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92518,40 +96943,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30673] = 12, + [34185] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(889), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, + ACTIONS(2777), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(2759), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 6, + ACTIONS(2314), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2316), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92571,58 +97000,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30738] = 19, + [34256] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(890), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2783), 2, + anon_sym___attribute__, sym_identifier, - ACTIONS(2753), 1, + ACTIONS(2790), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2793), 3, anon_sym_LBRACK, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1303), 1, - sym__declarator, - STATE(1474), 1, - sym__abstract_declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2747), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2786), 4, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(884), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1002), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1496), 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_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2788), 28, 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, @@ -92631,49 +97047,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [30817] = 14, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [34315] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(891), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2741), 3, + ACTIONS(2759), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2314), 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(2271), 17, + ACTIONS(2316), 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, @@ -92686,107 +97106,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30886] = 15, + [34382] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2314), 1, + anon_sym_EQ, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2763), 1, + anon_sym_AMP_AMP, + ACTIONS(2765), 1, anon_sym_PIPE, + ACTIONS(2767), 1, anon_sym_CARET, + ACTIONS(2769), 1, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2271), 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, - [30957] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(892), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2771), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2773), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2775), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2269), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2741), 3, + ACTIONS(2777), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2759), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 15, + ACTIONS(2316), 14, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92799,52 +97170,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31030] = 17, + [34467] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(893), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2739), 2, + ACTIONS(2330), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 15, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2332), 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, @@ -92857,53 +97224,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31105] = 18, + [34532] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(2735), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, - anon_sym_PIPE, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(894), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2271), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 15, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2273), 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, @@ -92916,56 +97278,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31182] = 19, + [34597] = 23, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1755), 1, + anon_sym_LPAREN2, + ACTIONS(1757), 1, + anon_sym_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2803), 1, + anon_sym_LBRACK, + STATE(895), 1, sym_comment, - ACTIONS(2251), 1, + STATE(1025), 1, + aux_sym__type_definition_type_repeat1, + STATE(1032), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1342), 1, + sym__declarator, + STATE(1494), 1, + sym__abstract_declarator, + STATE(1532), 1, + sym_parameter_list, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(2797), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1527), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 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, + [34686] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, ACTIONS(2761), 1, - anon_sym_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2763), 1, - anon_sym_CARET, + anon_sym_AMP_AMP, ACTIONS(2765), 1, anon_sym_PIPE, ACTIONS(2767), 1, - anon_sym_AMP_AMP, - STATE(720), 1, + anon_sym_CARET, + ACTIONS(2769), 1, + anon_sym_AMP, + ACTIONS(2779), 1, + anon_sym_QMARK, + ACTIONS(2781), 1, + anon_sym_DOT, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(896), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2757), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2771), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2773), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2775), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, + ACTIONS(2777), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2759), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 14, + ACTIONS(2431), 12, 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, @@ -92976,29 +97410,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31261] = 10, + [34775] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2741), 3, + STATE(897), 1, + sym_comment, + ACTIONS(2342), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -93007,7 +97441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2344), 21, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93027,182 +97461,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31322] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2419), 1, - anon_sym_EQ, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_AMP_AMP, - ACTIONS(2769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2771), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2417), 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, - [31405] = 21, + [34838] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2415), 1, - anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_AMP_AMP, - ACTIONS(2769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2771), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(898), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2338), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2413), 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, - [31488] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2403), 1, - anon_sym_EQ, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_AMP_AMP, - ACTIONS(2769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2771), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2340), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2741), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 12, - anon_sym_DOT_DOT_DOT, + 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, @@ -93213,25 +97517,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31571] = 7, + [34903] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2743), 1, anon_sym_LBRACE, - ACTIONS(2777), 1, + ACTIONS(2809), 1, anon_sym___attribute__, - STATE(839), 1, + STATE(832), 1, sym_attribute_specifier, - STATE(928), 1, + STATE(899), 1, + sym_comment, + STATE(946), 1, sym_enumerator_list, - ACTIONS(2775), 6, + ACTIONS(2807), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 29, + ACTIONS(2805), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -93261,104 +97569,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [31626] = 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(2745), 1, - sym_identifier, - ACTIONS(2753), 1, - anon_sym_LBRACK, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1475), 1, - sym__abstract_declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2780), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1001), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1016), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1496), 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, - [31705] = 9, + [34964] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(900), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2330), 13, + ACTIONS(2757), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2773), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2775), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2777), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2759), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2314), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2332), 19, + ACTIONS(2316), 17, 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, @@ -93371,23 +97628,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31764] = 9, + [35039] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(901), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2291), 13, + ACTIONS(2314), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93401,7 +97662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2293), 19, + ACTIONS(2316), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93421,28 +97682,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31823] = 9, + [35104] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(902), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2257), 13, + ACTIONS(2757), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2759), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2314), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -93451,7 +97718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2259), 19, + ACTIONS(2316), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93471,25 +97738,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31882] = 6, + [35173] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(903), 1, sym_comment, - ACTIONS(2782), 2, + ACTIONS(2812), 2, anon_sym___attribute__, sym_identifier, - ACTIONS(2789), 2, + ACTIONS(2819), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2792), 3, + ACTIONS(2822), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - ACTIONS(2785), 4, + ACTIONS(2815), 4, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2787), 28, + ACTIONS(2817), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -93518,41 +97789,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [31935] = 6, + [35232] = 20, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2314), 1, + anon_sym_EQ, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2765), 1, + anon_sym_PIPE, + ACTIONS(2767), 1, + anon_sym_CARET, + ACTIONS(2769), 1, + anon_sym_AMP, + ACTIONS(2781), 1, + anon_sym_DOT, + STATE(734), 1, + sym_argument_list, + STATE(904), 1, sym_comment, - ACTIONS(2794), 2, - anon_sym___attribute__, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2771), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2773), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2775), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2777), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2759), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2316), 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, + [35315] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1755), 1, + anon_sym_LPAREN2, + ACTIONS(1757), 1, + anon_sym_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2801), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2804), 3, + ACTIONS(2803), 1, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2797), 4, + STATE(895), 1, + aux_sym_pointer_declarator_repeat1, + STATE(905), 1, + sym_comment, + STATE(1027), 1, + aux_sym__type_definition_type_repeat1, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1330), 1, + sym__declarator, + STATE(1502), 1, + sym__abstract_declarator, + STATE(1532), 1, + sym_parameter_list, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2824), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2799), 28, + anon_sym_RPAREN, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1527), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 9, 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, @@ -93561,45 +97918,243 @@ 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, - [31988] = 8, + [35404] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2767), 1, + anon_sym_CARET, + ACTIONS(2769), 1, + anon_sym_AMP, + ACTIONS(2781), 1, anon_sym_DOT, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2334), 13, + STATE(906), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2314), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2757), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2771), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2773), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2775), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2777), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2759), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2316), 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, + [35485] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2423), 1, + anon_sym_EQ, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2763), 1, + anon_sym_AMP_AMP, + ACTIONS(2765), 1, anon_sym_PIPE, + ACTIONS(2767), 1, anon_sym_CARET, + ACTIONS(2769), 1, anon_sym_AMP, + ACTIONS(2779), 1, + anon_sym_QMARK, + ACTIONS(2781), 1, + anon_sym_DOT, + STATE(734), 1, + sym_argument_list, + STATE(907), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2771), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2773), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2775), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2777), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2759), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2421), 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, + [35574] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2769), 1, + anon_sym_AMP, + ACTIONS(2781), 1, + anon_sym_DOT, + STATE(734), 1, + sym_argument_list, + STATE(908), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2771), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2773), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2775), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2777), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2314), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(2336), 21, + ACTIONS(2759), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2316), 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, + [35653] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + STATE(734), 1, + sym_argument_list, + STATE(909), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2757), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2771), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2773), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2775), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2777), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2759), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2314), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2316), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93612,12 +98167,14 @@ 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, - [32045] = 3, + [35730] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(910), 1, sym_comment, - ACTIONS(2287), 14, + ACTIONS(2322), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93632,7 +98189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2289), 24, + ACTIONS(2324), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -93657,13 +98214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32091] = 3, + [35782] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(911), 1, sym_comment, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2104), 36, + ACTIONS(2112), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93700,13 +98261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32137] = 3, + [35834] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(912), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2106), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2100), 36, + ACTIONS(2104), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93743,10 +98308,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32183] = 3, + [35886] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(913), 1, sym_comment, - ACTIONS(2265), 14, + ACTIONS(2326), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93761,7 +98330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2267), 24, + ACTIONS(2328), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -93786,12 +98355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32229] = 5, + [35938] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2411), 1, anon_sym_EQ, - ACTIONS(2381), 10, + STATE(914), 1, + sym_comment, + ACTIONS(2413), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -93802,7 +98375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 13, + ACTIONS(1713), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93816,7 +98389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1699), 14, + ACTIONS(1707), 14, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -93831,10 +98404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32279] = 3, + [35994] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(915), 1, sym_comment, - ACTIONS(2261), 14, + ACTIONS(2318), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93849,7 +98426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2263), 24, + ACTIONS(2320), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -93874,10 +98451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32325] = 3, + [36046] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(916), 1, sym_comment, - ACTIONS(2277), 14, + ACTIONS(2275), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93892,7 +98473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2279), 24, + ACTIONS(2277), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -93917,12 +98498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32371] = 3, + [36098] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1320), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2708), 36, + STATE(917), 1, + sym_comment, + ACTIONS(1318), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -93959,15 +98544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32416] = 3, + [36149] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1276), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2712), 35, + STATE(918), 1, + sym_comment, + ACTIONS(1274), 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, @@ -94001,15 +98590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32461] = 3, + [36200] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(919), 1, sym_comment, - ACTIONS(1342), 1, + ACTIONS(1288), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1340), 36, + anon_sym_RBRACE, + ACTIONS(1286), 35, 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, @@ -94043,13 +98636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32506] = 3, + [36251] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(920), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(1248), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2692), 35, + ACTIONS(1246), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94085,20 +98682,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32551] = 5, + [36302] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(921), 1, sym_comment, - ACTIONS(2411), 1, + ACTIONS(2702), 2, anon_sym_LBRACK_LBRACK, - STATE(667), 1, - sym_string_literal, - ACTIONS(2806), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2409), 30, + anon_sym_RBRACE, + ACTIONS(2700), 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__, @@ -94129,15 +98728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32600] = 3, + [36353] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(922), 1, sym_comment, - ACTIONS(2706), 1, + ACTIONS(2706), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 36, + anon_sym_RBRACE, + ACTIONS(2704), 35, 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, @@ -94171,13 +98774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32645] = 3, + [36404] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(923), 1, sym_comment, - ACTIONS(2670), 2, + ACTIONS(2690), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2668), 35, + ACTIONS(2688), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94213,15 +98820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32690] = 3, + [36455] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(924), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(2714), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 36, + anon_sym_RBRACE, + ACTIONS(2712), 35, 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, @@ -94255,26 +98866,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32735] = 3, + [36506] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2830), 1, + anon_sym___attribute__, + STATE(828), 1, + sym_attribute_specifier, + STATE(925), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2828), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2676), 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(2826), 29, 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___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, @@ -94292,20 +98913,20 @@ 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, - [32780] = 3, + [36561] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(926), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(2726), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2680), 36, + anon_sym_RBRACE, + ACTIONS(2724), 35, 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, @@ -94339,15 +98960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32825] = 3, + [36612] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(927), 1, sym_comment, - ACTIONS(2694), 1, + ACTIONS(2686), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2692), 36, + anon_sym_RBRACE, + ACTIONS(2684), 35, 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, @@ -94381,62 +99006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32870] = 5, + [36663] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym___attribute__, - STATE(844), 1, - sym_attribute_specifier, - ACTIONS(2810), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2391), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2808), 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, - [32919] = 3, - ACTIONS(3), 1, + STATE(670), 1, + sym_string_literal, + STATE(928), 1, sym_comment, - ACTIONS(2686), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2684), 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(2833), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2389), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94467,13 +99054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32964] = 3, + [36718] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(929), 1, sym_comment, - ACTIONS(2674), 2, + ACTIONS(2730), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2672), 35, + ACTIONS(2728), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -94509,15 +99100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33009] = 3, + [36769] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(930), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2734), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2700), 36, + anon_sym_RBRACE, + ACTIONS(2732), 35, 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, @@ -94551,15 +99146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33054] = 3, + [36820] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(931), 1, sym_comment, - ACTIONS(2714), 1, + ACTIONS(1276), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2712), 36, + anon_sym_RBRACE, + ACTIONS(1274), 35, 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, @@ -94593,12 +99192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33099] = 3, + [36871] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2718), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2688), 36, + STATE(932), 1, + sym_comment, + ACTIONS(2716), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -94635,12 +99238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33144] = 3, + [36922] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2714), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1296), 36, + STATE(933), 1, + sym_comment, + ACTIONS(2712), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -94677,12 +99284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33189] = 3, + [36973] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2706), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2672), 36, + STATE(934), 1, + sym_comment, + ACTIONS(2704), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -94719,12 +99330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33234] = 3, + [37024] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2702), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2668), 36, + STATE(935), 1, + sym_comment, + ACTIONS(2700), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -94761,18 +99376,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33279] = 3, + [37075] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2391), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2708), 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(671), 1, + sym_string_literal, + STATE(936), 1, + sym_comment, + ACTIONS(2833), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2389), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94803,12 +99424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33324] = 3, + [37130] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2710), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 36, + STATE(937), 1, + sym_comment, + ACTIONS(2708), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -94845,15 +99470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33369] = 3, + [37181] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2698), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2680), 35, + STATE(938), 1, + sym_comment, + ACTIONS(2696), 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, @@ -94887,15 +99516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33414] = 3, + [37232] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2702), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2682), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2700), 35, + STATE(939), 1, + sym_comment, + ACTIONS(2680), 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, @@ -94929,59 +99562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33459] = 5, + [37283] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2819), 1, - anon_sym___attribute__, - STATE(824), 1, - sym_attribute_specifier, - ACTIONS(2817), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2734), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 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, - [33508] = 3, - ACTIONS(3), 1, + STATE(940), 1, sym_comment, - ACTIONS(2686), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2684), 35, + ACTIONS(2732), 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, @@ -95015,12 +99608,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33553] = 3, + [37334] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2686), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 36, + STATE(941), 1, + sym_comment, + ACTIONS(2684), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -95057,15 +99654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33598] = 3, + [37385] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2678), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2722), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2676), 35, + STATE(942), 1, + sym_comment, + ACTIONS(2720), 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, @@ -95099,15 +99700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33643] = 3, + [37436] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2726), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2688), 35, + STATE(943), 1, + sym_comment, + ACTIONS(2724), 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, @@ -95141,15 +99746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33688] = 3, + [37487] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2694), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1292), 35, + STATE(944), 1, + sym_comment, + ACTIONS(2692), 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, @@ -95183,21 +99792,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33733] = 5, + [37538] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2690), 1, + anon_sym_LBRACK_LBRACK, + STATE(945), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(2688), 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__, - STATE(822), 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, + 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, + [37589] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2839), 1, + anon_sym___attribute__, + STATE(836), 1, sym_attribute_specifier, - ACTIONS(2824), 6, + STATE(946), 1, + sym_comment, + ACTIONS(2837), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2822), 29, + ACTIONS(2835), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -95227,20 +99886,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [33782] = 5, + [37644] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(947), 1, sym_comment, - ACTIONS(2411), 1, + ACTIONS(1340), 2, anon_sym_LBRACK_LBRACK, - STATE(663), 1, - sym_string_literal, - ACTIONS(2806), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2409), 30, + anon_sym_RBRACE, + ACTIONS(1338), 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__, @@ -95271,20 +99932,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33831] = 5, + [37695] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(948), 1, sym_comment, - ACTIONS(2411), 1, + ACTIONS(2710), 2, anon_sym_LBRACK_LBRACK, - STATE(664), 1, - sym_string_literal, - ACTIONS(2806), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2409), 30, + anon_sym_RBRACE, + ACTIONS(2708), 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__, @@ -95315,8 +99978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33880] = 3, + [37746] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(949), 1, sym_comment, ACTIONS(2698), 2, anon_sym_LBRACK_LBRACK, @@ -95357,20 +100024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33925] = 5, + [37797] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2411), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1248), 1, anon_sym_LBRACK_LBRACK, - STATE(668), 1, - sym_string_literal, - ACTIONS(2806), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2409), 30, + STATE(950), 1, + sym_comment, + ACTIONS(1246), 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__, @@ -95401,15 +100070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33974] = 3, + [37848] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(951), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(2694), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1300), 36, + anon_sym_RBRACE, + ACTIONS(2692), 35, 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, @@ -95443,12 +100116,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34019] = 3, + [37899] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1340), 1, + anon_sym_LBRACK_LBRACK, + STATE(952), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(1338), 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, + 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, + [37950] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2730), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1248), 36, + STATE(953), 1, + sym_comment, + ACTIONS(2728), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -95485,13 +100208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34064] = 3, + [38001] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(954), 1, sym_comment, - ACTIONS(1342), 2, + ACTIONS(2682), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1340), 35, + ACTIONS(2680), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -95527,13 +100254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34109] = 3, + [38052] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(955), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(2718), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1272), 35, + ACTIONS(2716), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -95569,13 +100300,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34154] = 3, + [38103] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2391), 1, + anon_sym_LBRACK_LBRACK, + STATE(674), 1, + sym_string_literal, + STATE(956), 1, + sym_comment, + ACTIONS(2833), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2389), 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, + [38158] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(957), 1, sym_comment, - ACTIONS(1298), 2, + ACTIONS(1320), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1296), 35, + ACTIONS(1318), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -95611,13 +100394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34199] = 3, + [38209] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(958), 1, sym_comment, - ACTIONS(1250), 2, + ACTIONS(1316), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1248), 35, + ACTIONS(1314), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -95653,13 +100440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34244] = 3, + [38260] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(959), 1, sym_comment, - ACTIONS(2706), 2, + ACTIONS(2722), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2704), 35, + ACTIONS(2720), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -95695,15 +100486,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34289] = 3, + [38311] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2391), 1, + anon_sym_LBRACK_LBRACK, + STATE(676), 1, + sym_string_literal, + STATE(960), 1, + sym_comment, + ACTIONS(2833), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2389), 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, + [38366] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2846), 1, + anon_sym___attribute__, + STATE(824), 1, + sym_attribute_specifier, + STATE(961), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(2844), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1300), 35, + ACTIONS(2842), 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, + [38421] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1316), 1, + anon_sym_LBRACK_LBRACK, + STATE(962), 1, + sym_comment, + ACTIONS(1314), 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, + 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, + [38472] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1288), 1, + anon_sym_LBRACK_LBRACK, + STATE(963), 1, + sym_comment, + ACTIONS(1286), 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, @@ -95737,10 +100674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34334] = 3, + [38523] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(964), 1, sym_comment, - ACTIONS(1172), 17, + ACTIONS(1198), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95758,7 +100699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1174), 19, + ACTIONS(1200), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95778,10 +100719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34378] = 3, + [38573] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(965), 1, sym_comment, - ACTIONS(1200), 17, + ACTIONS(1174), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95799,7 +100744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1202), 19, + ACTIONS(1176), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95819,10 +100764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34422] = 3, + [38623] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(966), 1, sym_comment, - ACTIONS(1200), 17, + ACTIONS(1230), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95840,7 +100789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1202), 19, + ACTIONS(1232), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95860,10 +100809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34466] = 3, + [38673] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(967), 1, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1218), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95881,7 +100834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1122), 19, + ACTIONS(1220), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95901,10 +100854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34510] = 3, + [38723] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(968), 1, sym_comment, - ACTIONS(1176), 17, + ACTIONS(1194), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95922,7 +100879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1178), 19, + ACTIONS(1196), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95942,10 +100899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34554] = 3, + [38773] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(969), 1, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1194), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95963,7 +100924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1122), 19, + ACTIONS(1196), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95983,10 +100944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34598] = 3, + [38823] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(970), 1, sym_comment, - ACTIONS(1148), 17, + ACTIONS(1138), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96004,7 +100969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1150), 19, + ACTIONS(1140), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96024,10 +100989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34642] = 3, + [38873] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(971), 1, sym_comment, - ACTIONS(1168), 17, + ACTIONS(1138), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96045,7 +101014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1170), 19, + ACTIONS(1140), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96065,10 +101034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34686] = 3, + [38923] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(972), 1, sym_comment, - ACTIONS(1168), 17, + ACTIONS(1198), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96086,7 +101059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1170), 19, + ACTIONS(1200), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96106,10 +101079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34730] = 3, + [38973] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(973), 1, sym_comment, - ACTIONS(1176), 17, + ACTIONS(1174), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96127,7 +101104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1178), 19, + ACTIONS(1176), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96147,50 +101124,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34774] = 16, + [39023] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1109), 1, + STATE(974), 1, + sym_comment, + STATE(976), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1366), 1, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1127), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1397), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2801), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(954), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2799), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 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(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96200,28 +101183,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34843] = 9, + [39102] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2623), 1, anon_sym_LPAREN2, - ACTIONS(2839), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(2862), 1, anon_sym_RPAREN, - STATE(811), 1, + STATE(848), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1658), 1, + STATE(975), 1, + sym_comment, + STATE(1598), 1, aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1710), 2, + ACTIONS(1718), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1712), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1697), 24, + ACTIONS(1705), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96246,50 +101233,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [34898] = 16, + [39163] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1109), 1, + STATE(976), 1, + sym_comment, + STATE(1032), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1355), 1, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1129), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1390), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2801), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(956), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1089), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2799), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 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(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96299,50 +101292,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34967] = 16, + [39242] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1109), 1, + STATE(977), 1, + sym_comment, + STATE(978), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1355), 1, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1129), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1390), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2801), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, - sym_ms_pointer_modifier, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2855), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1464), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(49), 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, + [39321] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2849), 1, + sym_identifier, + ACTIONS(2851), 1, + anon_sym_LPAREN2, + ACTIONS(2853), 1, + anon_sym_STAR, + ACTIONS(2857), 1, + sym_primitive_type, + STATE(978), 1, + sym_comment, + STATE(1032), 1, aux_sym_pointer_declarator_repeat1, - STATE(1089), 2, - sym_type_qualifier, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1125), 1, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + STATE(1144), 1, + sym_type_qualifier, + STATE(1400), 1, + sym__type_declarator, + STATE(1896), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2799), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 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(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96352,14 +101410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35036] = 3, + [39400] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(979), 1, sym_comment, - ACTIONS(2847), 3, + ACTIONS(2867), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 32, + ACTIONS(2865), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96392,80 +101454,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35079] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2829), 1, - sym_identifier, - ACTIONS(2831), 1, - anon_sym_LPAREN2, - ACTIONS(2833), 1, - anon_sym_STAR, - ACTIONS(2837), 1, - sym_primitive_type, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1360), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1016), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1099), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2835), 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, - [35148] = 8, + [39449] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2872), 1, anon_sym_LPAREN2, - ACTIONS(2856), 1, + ACTIONS(2876), 1, anon_sym_LBRACK, - STATE(811), 1, + STATE(848), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1710), 2, + STATE(980), 1, + sym_comment, + ACTIONS(1718), 2, anon_sym_COMMA, anon_sym_STAR, - ACTIONS(2849), 2, + ACTIONS(2869), 2, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(1712), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1697), 23, + ACTIONS(1705), 23, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96489,25 +101502,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [35200] = 7, + [39507] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2623), 1, anon_sym_LPAREN2, - STATE(811), 1, + STATE(848), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1710), 2, + STATE(981), 1, + sym_comment, + ACTIONS(1718), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 2, + ACTIONS(2879), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1712), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1697), 24, + ACTIONS(1705), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96532,144 +101549,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [35250] = 18, + [39563] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, + ACTIONS(2433), 1, aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - ACTIONS(2868), 1, + ACTIONS(2888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2890), 1, + anon_sym_AMP_AMP, + ACTIONS(2892), 1, anon_sym_PIPE, - ACTIONS(2870), 1, + ACTIONS(2894), 1, anon_sym_CARET, - ACTIONS(2872), 1, + ACTIONS(2896), 1, anon_sym_AMP, - STATE(720), 1, + ACTIONS(2906), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(982), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2898), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 9, + ACTIONS(2431), 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_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [35321] = 21, + [39646] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2419), 1, + ACTIONS(2314), 1, aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - ACTIONS(2868), 1, + ACTIONS(2890), 1, + anon_sym_AMP_AMP, + ACTIONS(2892), 1, anon_sym_PIPE, - ACTIONS(2870), 1, + ACTIONS(2894), 1, anon_sym_CARET, - ACTIONS(2872), 1, + ACTIONS(2896), 1, anon_sym_AMP, - ACTIONS(2882), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - ACTIONS(2886), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(983), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2898), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2417), 6, + ACTIONS(2316), 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, - [35398] = 10, + [39725] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(984), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2864), 2, + ACTIONS(2882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 7, + ACTIONS(2314), 5, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 16, + ACTIONS(2316), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96686,271 +101717,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [35453] = 21, + [39788] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2423), 1, aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - ACTIONS(2868), 1, + ACTIONS(2888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2890), 1, + anon_sym_AMP_AMP, + ACTIONS(2892), 1, anon_sym_PIPE, - ACTIONS(2870), 1, + ACTIONS(2894), 1, anon_sym_CARET, - ACTIONS(2872), 1, + ACTIONS(2896), 1, anon_sym_AMP, - ACTIONS(2882), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - ACTIONS(2886), 1, + ACTIONS(2906), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(985), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2898), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 6, + ACTIONS(2421), 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, - [35530] = 21, + [39871] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, - anon_sym_SLASH, - ACTIONS(2868), 1, - anon_sym_PIPE, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, - anon_sym_AMP, - ACTIONS(2882), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, ACTIONS(2886), 1, - anon_sym_QMARK, - ACTIONS(2890), 1, - aux_sym_preproc_elif_token1, - STATE(720), 1, + anon_sym_SLASH, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(986), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2876), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2878), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2888), 6, + ACTIONS(2314), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2316), 14, 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_QMARK, sym_identifier, - [35607] = 19, + [39936] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - ACTIONS(2868), 1, - anon_sym_PIPE, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, - anon_sym_AMP, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(987), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2314), 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(2878), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2880), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 8, + ACTIONS(2316), 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, - [35680] = 21, + [39997] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, - anon_sym_SLASH, - ACTIONS(2868), 1, - anon_sym_PIPE, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, - anon_sym_AMP, - ACTIONS(2882), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, ACTIONS(2886), 1, - anon_sym_QMARK, - STATE(720), 1, + anon_sym_SLASH, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(988), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2413), 6, + ACTIONS(2314), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2316), 12, 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_QMARK, sym_identifier, - [35757] = 17, + [40066] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, - anon_sym_AMP, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(989), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2898), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 9, + ACTIONS(2314), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2316), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96958,99 +101981,114 @@ 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_QMARK, sym_identifier, - [35826] = 16, + [40137] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - ACTIONS(2872), 1, + ACTIONS(2888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2890), 1, + anon_sym_AMP_AMP, + ACTIONS(2892), 1, + anon_sym_PIPE, + ACTIONS(2894), 1, + anon_sym_CARET, + ACTIONS(2896), 1, anon_sym_AMP, - STATE(720), 1, + ACTIONS(2906), 1, + anon_sym_QMARK, + ACTIONS(2910), 1, + aux_sym_preproc_elif_token1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(990), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2898), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 10, + ACTIONS(2908), 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_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [35893] = 15, + [40220] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2896), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(991), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2314), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2898), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2269), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2271), 10, + ACTIONS(2316), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97061,43 +102099,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [35958] = 14, + [40293] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2886), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2894), 1, + anon_sym_CARET, + ACTIONS(2896), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(992), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2314), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2876), 2, + ACTIONS(2898), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2902), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2269), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2271), 12, + ACTIONS(2316), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97105,44 +102153,56 @@ 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_QMARK, sym_identifier, - [36021] = 12, + [40368] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2314), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2886), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2892), 1, + anon_sym_PIPE, + ACTIONS(2894), 1, + anon_sym_CARET, + ACTIONS(2896), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(993), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2880), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2269), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2898), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 14, + ACTIONS(2902), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97150,213 +102210,177 @@ 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, - [36080] = 11, + [40445] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2886), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2890), 1, + anon_sym_AMP_AMP, + ACTIONS(2892), 1, + anon_sym_PIPE, + ACTIONS(2894), 1, + anon_sym_CARET, + ACTIONS(2896), 1, + anon_sym_AMP, + ACTIONS(2906), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(994), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2898), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2900), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 16, + ACTIONS(2902), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2435), 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_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, - [36137] = 12, + [40528] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(995), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 14, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 8, 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, - [36195] = 15, + [40604] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(996), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 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, - [36259] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2936), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2934), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [36327] = 4, + 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, + [40650] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2355), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2910), 1, + ACTIONS(2938), 1, anon_sym_typedef, - ACTIONS(2345), 30, + STATE(997), 1, + sym_comment, + ACTIONS(2353), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97387,116 +102411,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36369] = 17, + [40698] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(2942), 1, anon_sym_QMARK, - [36437] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(998), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2271), 8, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2431), 6, 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, - [36507] = 3, + [40778] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(999), 1, sym_comment, - ACTIONS(2916), 2, + ACTIONS(1140), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2787), 30, + ACTIONS(1138), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97527,14 +102510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36547] = 4, + [40824] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1000), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(1232), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2918), 1, - anon_sym_typedef, - ACTIONS(2345), 30, + anon_sym_LBRACE, + ACTIONS(1230), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97565,58 +102551,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36589] = 10, + [40870] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2355), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2944), 1, + anon_sym_typedef, + STATE(1001), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2353), 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, + [40918] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1002), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2269), 6, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2435), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [36643] = 4, + [40998] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1003), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(1196), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2920), 1, - anon_sym_typedef, - ACTIONS(2345), 30, + anon_sym_LBRACE, + ACTIONS(1194), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97647,13 +102692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36685] = 3, + [41044] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1004), 1, sym_comment, - ACTIONS(1202), 2, + ACTIONS(1200), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1200), 30, + ACTIONS(1198), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97684,13 +102733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36725] = 3, + [41090] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2355), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1200), 30, + ACTIONS(2946), 1, + anon_sym_typedef, + STATE(1005), 1, + sym_comment, + ACTIONS(2353), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97721,13 +102775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36765] = 3, + [41138] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1006), 1, sym_comment, - ACTIONS(1174), 2, + ACTIONS(1196), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1172), 30, + ACTIONS(1194), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97758,63 +102816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36805] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2908), 1, - anon_sym_AMP, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 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, - [36871] = 3, + [41184] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1007), 1, sym_comment, - ACTIONS(1178), 2, + ACTIONS(2950), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1176), 30, + ACTIONS(2948), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97845,35 +102857,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36911] = 11, + [41230] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1008), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2314), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 16, + ACTIONS(2316), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -97890,13 +102906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36967] = 3, + [41292] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1178), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2355), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1176), 30, + ACTIONS(2952), 1, + anon_sym_typedef, + STATE(1009), 1, + sym_comment, + ACTIONS(2353), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97927,13 +102948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37007] = 3, + [41340] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1010), 1, sym_comment, - ACTIONS(2924), 2, + ACTIONS(1176), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2922), 30, + ACTIONS(1174), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97964,61 +102989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37047] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [37109] = 3, + [41386] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1011), 1, sym_comment, - ACTIONS(1122), 2, + ACTIONS(2956), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1120), 30, + ACTIONS(2954), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98049,104 +103030,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37149] = 20, + [41432] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1012), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2413), 6, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2421), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [37223] = 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, - [37263] = 3, + [41512] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1013), 1, sym_comment, - ACTIONS(1122), 2, + ACTIONS(1220), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1120), 30, + ACTIONS(1218), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98177,13 +103129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37303] = 3, + [41558] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1014), 1, sym_comment, - ACTIONS(2932), 2, + ACTIONS(2958), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2930), 30, + ACTIONS(2817), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98214,50 +103170,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37343] = 3, + [41604] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + STATE(734), 1, + sym_argument_list, + STATE(1015), 1, sym_comment, - ACTIONS(1170), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1168), 30, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2314), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2316), 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___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, - [37383] = 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [41664] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1016), 1, sym_comment, - ACTIONS(1150), 2, + ACTIONS(1176), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1148), 30, + ACTIONS(1174), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98288,68 +103259,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37423] = 20, + [41710] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1017), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2417), 6, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 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, - [37497] = 4, + anon_sym_QMARK, + [41784] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1018), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(1200), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2934), 1, - anon_sym_typedef, - ACTIONS(2345), 30, + anon_sym_LBRACE, + ACTIONS(1198), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98380,100 +103355,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37539] = 20, + [41830] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1019), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2314), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2401), 6, + ACTIONS(2316), 14, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [37613] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, + 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, + [41894] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(1751), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + STATE(734), 1, + sym_argument_list, + STATE(1020), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2753), 1, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 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, + [41968] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, anon_sym_LBRACK, - STATE(1312), 1, - sym__declarator, - STATE(1446), 1, - sym__abstract_declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2936), 2, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2924), 1, + anon_sym_AMP, + STATE(734), 1, + sym_argument_list, + STATE(1021), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 10, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1496), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [42040] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1022), 1, + sym_comment, + ACTIONS(1140), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1138), 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, @@ -98482,45 +103550,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37676] = 15, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [42086] = 16, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + STATE(734), 1, + sym_argument_list, + STATE(1023), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2314), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [42154] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(1751), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + STATE(734), 1, + sym_argument_list, + STATE(1024), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2314), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, anon_sym_STAR, - ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 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, + [42224] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1755), 1, + anon_sym_LPAREN2, + ACTIONS(1757), 1, + anon_sym_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1321), 1, + STATE(1025), 1, + sym_comment, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1332), 1, sym__declarator, - STATE(1475), 1, + STATE(1501), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1532), 1, sym_parameter_list, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(2780), 2, + ACTIONS(2960), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98530,47 +103713,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37739] = 16, + [42295] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2799), 1, sym_ms_restrict_modifier, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1109), 1, + STATE(1026), 1, + sym_comment, + STATE(1028), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1474), 1, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1154), 1, + aux_sym__type_definition_type_repeat1, + STATE(1502), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1532), 1, sym_parameter_list, - ACTIONS(2940), 2, + ACTIONS(2964), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2942), 2, + ACTIONS(2966), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1004), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1125), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2747), 3, + ACTIONS(2824), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2962), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -98579,92 +103768,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37804] = 16, + [42370] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1867), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1755), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1757), 1, anon_sym_STAR, - ACTIONS(2749), 1, - sym_ms_restrict_modifier, - ACTIONS(2753), 1, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1475), 1, + STATE(1027), 1, + sym_comment, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1342), 1, + sym__declarator, + STATE(1494), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1532), 1, sym_parameter_list, - ACTIONS(2940), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2942), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1016), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1124), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2780), 3, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(2797), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 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, - [37869] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1312), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1016), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1137), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98674,45 +103821,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37929] = 14, + [42441] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, + anon_sym_const, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(1875), 1, anon_sym_STAR, - STATE(1109), 1, + ACTIONS(2799), 1, + sym_ms_restrict_modifier, + ACTIONS(2803), 1, + anon_sym_LBRACK, + STATE(1028), 1, + sym_comment, + STATE(1032), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1303), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1007), 2, + STATE(1117), 1, sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1141), 2, + STATE(1144), 1, sym_type_qualifier, + STATE(1150), 1, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, + STATE(1494), 1, + sym__abstract_declarator, + STATE(1532), 1, + sym_parameter_list, + ACTIONS(2964), 2, 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(2966), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2797), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1527), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2962), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -98720,43 +103876,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37989] = 14, + [42516] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1029), 1, + sym_comment, + STATE(1035), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1158), 1, + aux_sym__type_definition_type_repeat1, + STATE(1342), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2801), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2799), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98766,10 +103928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38049] = 3, + [42586] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1030), 1, sym_comment, - ACTIONS(2948), 11, + ACTIONS(2972), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -98781,7 +103947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2950), 19, + ACTIONS(2974), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -98801,136 +103967,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38087] = 14, + [42630] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1031), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2976), 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(2954), 1, + ACTIONS(2978), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2956), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1344), 1, - sym__field_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1015), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1130), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1399), 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, - [38147] = 14, + 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, + [42674] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, - sym_identifier, - ACTIONS(2954), 1, - anon_sym_LPAREN2, - ACTIONS(2956), 1, - anon_sym_STAR, - STATE(1109), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1344), 1, - sym__field_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, + STATE(1117), 1, + sym_ms_pointer_modifier, + ACTIONS(2987), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, - sym_ms_pointer_modifier, + STATE(1032), 2, + sym_comment, aux_sym_pointer_declarator_repeat1, - STATE(1130), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2984), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1399), 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, - [38207] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2982), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2946), 1, anon_sym_STAR, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 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, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2980), 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, @@ -98939,10 +104047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38267] = 3, + sym_primitive_type, + sym_identifier, + [42726] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1033), 1, sym_comment, - ACTIONS(2958), 11, + ACTIONS(2990), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -98954,7 +104068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2960), 19, + ACTIONS(2992), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -98974,56 +104088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38305] = 14, + [42770] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1034), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, - sym_identifier, - ACTIONS(2954), 1, - anon_sym_LPAREN2, - ACTIONS(2956), 1, - anon_sym_STAR, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1335), 1, - sym__field_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1010), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1399), 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, - [38365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2962), 11, + ACTIONS(2994), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -99035,7 +104107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2964), 19, + ACTIONS(2996), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -99055,43 +104127,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38403] = 14, + [42814] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1032), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1035), 1, + sym_comment, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - STATE(1334), 1, - sym__field_declarator, - STATE(1817), 1, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1165), 1, + aux_sym__type_definition_type_repeat1, + STATE(1332), 1, + sym__declarator, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2801), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 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, + [42884] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(1036), 1, + sym_comment, + STATE(1039), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1163), 1, + aux_sym__type_definition_type_repeat1, + STATE(1330), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 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, + [42954] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2998), 1, + sym_identifier, + ACTIONS(3000), 1, + anon_sym_LPAREN2, + ACTIONS(3002), 1, + anon_sym_STAR, + STATE(1032), 1, aux_sym_pointer_declarator_repeat1, - STATE(1138), 2, + STATE(1037), 1, + sym_comment, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, sym_type_qualifier, + STATE(1155), 1, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + STATE(1378), 1, + sym__field_declarator, + STATE(1969), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2799), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1399), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -99101,35 +104283,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38463] = 7, + [43024] = 18, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2998), 1, + sym_identifier, + ACTIONS(3000), 1, + anon_sym_LPAREN2, + ACTIONS(3002), 1, + anon_sym_STAR, + STATE(1037), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1038), 1, sym_comment, - STATE(1109), 1, + STATE(1114), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2973), 2, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1166), 1, + aux_sym__type_definition_type_repeat1, + STATE(1367), 1, + sym__field_declarator, + STATE(1969), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2970), 3, + ACTIONS(2799), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2968), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(49), 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, + [43094] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2968), 1, anon_sym_LPAREN2, + ACTIONS(2970), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2966), 16, + STATE(1032), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1039), 1, + sym_comment, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1158), 1, + aux_sym__type_definition_type_repeat1, + STATE(1342), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 9, 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, @@ -99138,600 +104387,713 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38509] = 3, + [43164] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 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__, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2978), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3000), 1, anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3002), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [38547] = 21, + STATE(1040), 1, + sym_comment, + STATE(1041), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1155), 1, + aux_sym__type_definition_type_repeat1, + STATE(1378), 1, + sym__field_declarator, + STATE(1969), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(49), 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, + [43234] = 18, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2998), 1, + sym_identifier, + ACTIONS(3000), 1, + anon_sym_LPAREN2, + ACTIONS(3002), 1, + anon_sym_STAR, + STATE(1032), 1, + aux_sym_pointer_declarator_repeat1, + STATE(1041), 1, sym_comment, - ACTIONS(2249), 1, + STATE(1114), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1117), 1, + sym_ms_pointer_modifier, + STATE(1144), 1, + sym_type_qualifier, + STATE(1156), 1, + aux_sym__type_definition_type_repeat1, + STATE(1376), 1, + sym__field_declarator, + STATE(1969), 1, + sym_ms_based_modifier, + ACTIONS(2801), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2799), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(49), 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, + [43304] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1042), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2982), 3, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3006), 3, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38621] = 22, + [43384] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(3008), 1, anon_sym_COMMA, - ACTIONS(2986), 1, + ACTIONS(3010), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - STATE(1672), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, + STATE(1043), 1, + sym_comment, + STATE(1628), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38696] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43465] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3012), 1, + anon_sym_COMMA, + ACTIONS(3014), 1, + anon_sym_RPAREN, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1044), 1, + sym_comment, + STATE(1618), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2988), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [38767] = 22, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43546] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(3016), 1, anon_sym_COMMA, - ACTIONS(2990), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3018), 1, + anon_sym_RBRACE, + STATE(734), 1, sym_argument_list, - STATE(1567), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, + STATE(1045), 1, + sym_comment, + STATE(1679), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38842] = 22, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43627] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(3012), 1, anon_sym_COMMA, - ACTIONS(2992), 1, + ACTIONS(3020), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - STATE(1679), 1, + STATE(1046), 1, + sym_comment, + STATE(1611), 1, aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38917] = 22, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43708] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(3012), 1, anon_sym_COMMA, - ACTIONS(2994), 1, + ACTIONS(3022), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - STATE(1583), 1, + STATE(1047), 1, + sym_comment, + STATE(1600), 1, aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38992] = 22, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43789] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2996), 1, - anon_sym_COMMA, - ACTIONS(2998), 1, - anon_sym_RBRACE, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - STATE(1616), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2253), 2, + STATE(1048), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39067] = 22, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3024), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [43866] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(3000), 1, + ACTIONS(3012), 1, anon_sym_COMMA, - ACTIONS(3002), 1, + ACTIONS(3026), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - STATE(1677), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2253), 2, + STATE(1049), 1, + sym_comment, + STATE(1702), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39142] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43947] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3028), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1050), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39214] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44025] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3030), 1, + anon_sym_COLON, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1051), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3006), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39284] = 13, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44103] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(3008), 1, + ACTIONS(1677), 1, anon_sym_enum, - STATE(1123), 1, + ACTIONS(3032), 1, + sym_identifier, + ACTIONS(3034), 1, + sym_primitive_type, + STATE(1052), 1, + sym_comment, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, sym__type_specifier, - STATE(1139), 1, + STATE(1250), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1868), 1, - sym_type_descriptor, - STATE(1107), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, + STATE(1308), 1, + sym__type_definition_type, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -99741,40 +105103,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39340] = 13, + [44167] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3032), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3034), 1, sym_primitive_type, - STATE(1176), 1, + STATE(1053), 1, + sym_comment, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, sym__type_specifier, - STATE(1223), 1, + STATE(1250), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1284), 1, + STATE(1305), 1, sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -99784,292 +105151,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39396] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [39462] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_COLON, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [39534] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_RPAREN, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [39606] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3038), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [39678] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [39750] = 13, + [44231] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3032), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3034), 1, sym_primitive_type, - STATE(1176), 1, + STATE(1054), 1, + sym_comment, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, sym__type_specifier, - STATE(1223), 1, + STATE(1250), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1280), 1, + STATE(1310), 1, sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -100079,87 +105199,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39806] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3024), 1, - anon_sym_AMP, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [39870] = 13, + [44295] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_enum, - ACTIONS(1819), 1, + ACTIONS(3032), 1, sym_identifier, - STATE(1123), 1, + ACTIONS(3034), 1, + sym_primitive_type, + STATE(1055), 1, + sym_comment, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, sym__type_specifier, - STATE(1139), 1, + STATE(1250), 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, + STATE(1306), 1, + sym__type_definition_type, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -100169,40 +105247,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39926] = 13, + [44359] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_enum, - ACTIONS(1819), 1, + ACTIONS(3032), 1, sym_identifier, - STATE(1123), 1, + ACTIONS(3034), 1, + sym_primitive_type, + STATE(1056), 1, + sym_comment, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, sym__type_specifier, - STATE(1139), 1, + STATE(1250), 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, + STATE(1304), 1, + sym__type_definition_type, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -100212,241 +105295,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39982] = 21, + [44423] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(3036), 1, + anon_sym_COLON, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1057), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40054] = 18, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44501] = 16, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1677), 1, + anon_sym_enum, + ACTIONS(3032), 1, + sym_identifier, + ACTIONS(3034), 1, + sym_primitive_type, + STATE(1058), 1, sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, + sym__type_specifier, + STATE(1250), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1307), 1, + sym__type_definition_type, + ACTIONS(45), 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(49), 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, + [44565] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - STATE(720), 1, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3038), 1, + anon_sym_COLON, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1059), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [40120] = 21, + [44643] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3046), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(3040), 1, + anon_sym_COLON, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1060), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40192] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44721] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3048), 1, - anon_sym_COLON, - STATE(720), 1, + ACTIONS(3042), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1061), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40264] = 13, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44799] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3032), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3034), 1, sym_primitive_type, - STATE(1176), 1, + STATE(1062), 1, + sym_comment, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, sym__type_specifier, - STATE(1223), 1, + STATE(1250), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1277), 1, + STATE(1309), 1, sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -100456,383 +105611,533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40320] = 20, + [44863] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3044), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1063), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3050), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [40390] = 16, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44941] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1064), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3016), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [40452] = 21, + ACTIONS(3046), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45017] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3052), 1, - anon_sym_COLON, - STATE(720), 1, + ACTIONS(3048), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1065), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40524] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45095] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3050), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1066), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, + [45173] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + STATE(734), 1, + sym_argument_list, + STATE(1067), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40596] = 15, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3052), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [45249] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3058), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1068), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3016), 2, + ACTIONS(2421), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3028), 2, + ACTIONS(3070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 8, - anon_sym_DOT_DOT_DOT, + [45327] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, + anon_sym_SLASH, + ACTIONS(3060), 1, anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, + anon_sym_QMARK, + STATE(734), 1, + sym_argument_list, + STATE(1069), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2431), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [40656] = 20, + ACTIONS(3072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45405] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3080), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1070), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3056), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40726] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45483] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1071), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2401), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3016), 2, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40798] = 13, + [45561] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3058), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1072), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2269), 4, + ACTIONS(2314), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 10, + ACTIONS(2316), 12, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100841,42 +106146,49 @@ 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_RBRACK, anon_sym_QMARK, - [40854] = 13, + [45621] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(1825), 1, sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(1176), 1, + ACTIONS(3084), 1, + anon_sym_enum, + STATE(1073), 1, + sym_comment, + STATE(1122), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1153), 1, sym__type_specifier, - STATE(1223), 1, + STATE(1159), 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(3012), 4, + STATE(2003), 1, + sym_type_descriptor, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -100886,962 +106198,1209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40910] = 19, + [45685] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1074), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2314), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2316), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [45747] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, + anon_sym_SLASH, + STATE(734), 1, + sym_argument_list, + STATE(1075), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2314), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 4, + ACTIONS(2316), 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, - [40978] = 21, + [45813] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3064), 1, - anon_sym_COLON, - STATE(720), 1, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1076), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41050] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45891] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1077), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2314), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3066), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41120] = 21, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [45959] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, + anon_sym_SLASH, ACTIONS(3068), 1, - anon_sym_SEMI, - STATE(720), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1078), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41192] = 21, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [46029] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3070), 1, - anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1079), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41264] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3088), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [46105] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1080), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41336] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3090), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [46181] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1081), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2413), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3016), 2, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41408] = 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(3010), 1, - sym_identifier, - ACTIONS(3014), 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(3012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 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, - [41464] = 11, + ACTIONS(3092), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [46257] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1082), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2269), 6, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3094), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46333] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3096), 1, + anon_sym_RPAREN, + STATE(734), 1, + sym_argument_list, + STATE(1083), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46411] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3098), 1, + anon_sym_RPAREN, + STATE(734), 1, + sym_argument_list, + STATE(1084), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [41516] = 13, + [46489] = 23, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3100), 1, + anon_sym_RPAREN, + STATE(734), 1, + sym_argument_list, + STATE(1085), 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(1819), 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(821), 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, - [41572] = 12, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46567] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3058), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1086), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 12, + ACTIONS(3074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 5, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [46639] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, + anon_sym_SLASH, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + STATE(734), 1, + sym_argument_list, + STATE(1087), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2316), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [41626] = 21, + [46711] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3068), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1088), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41698] = 21, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2316), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [46785] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3076), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(3102), 1, + anon_sym_RPAREN, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1089), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41770] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46863] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2269), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2781), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, + STATE(734), 1, + sym_argument_list, + STATE(1090), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2314), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3058), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2316), 12, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, 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_RBRACK, + anon_sym_QMARK, + [46921] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, + anon_sym_SLASH, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1091), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2417), 2, + ACTIONS(2435), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41842] = 21, + [46999] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2269), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2781), 1, + anon_sym_DOT, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3068), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, ACTIONS(3078), 1, - anon_sym_RPAREN, - STATE(720), 1, + anon_sym_QMARK, + ACTIONS(3104), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3106), 1, + anon_sym_RBRACK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1092), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41914] = 21, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47079] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1093), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2908), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41986] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47155] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3082), 1, + ACTIONS(3108), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1094), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42058] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47233] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1095), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3084), 2, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3110), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42128] = 13, + [47309] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3014), 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(3012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 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, - [42184] = 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(1819), 1, + ACTIONS(1825), 1, sym_identifier, - ACTIONS(3008), 1, + ACTIONS(3084), 1, anon_sym_enum, - STATE(1123), 1, + STATE(1096), 1, + sym_comment, + STATE(1122), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1153), 1, sym__type_specifier, - STATE(1139), 1, + STATE(1159), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1815), 1, + STATE(1929), 1, sym_type_descriptor, - STATE(1107), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -101851,40 +107410,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42240] = 13, + [47373] = 23, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3112), 1, + anon_sym_COLON, + STATE(734), 1, + sym_argument_list, + STATE(1097), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47451] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3032), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3034), 1, sym_primitive_type, - STATE(1176), 1, + STATE(1098), 1, + sym_comment, + STATE(1113), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1220), 1, sym__type_specifier, - STATE(1223), 1, + STATE(1250), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1283), 1, + STATE(1311), 1, sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -101894,191 +107513,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42296] = 20, + [47515] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3114), 1, + anon_sym_RPAREN, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1099), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2888), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42366] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47593] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3086), 1, - anon_sym_COLON, - STATE(720), 1, + ACTIONS(3116), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1100), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42438] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3088), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [42508] = 13, + [47671] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(1825), 1, sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(1176), 1, + STATE(1101), 1, + sym_comment, + STATE(1124), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1153), 1, sym__type_specifier, - STATE(1223), 1, + STATE(1159), 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(3012), 4, + STATE(1915), 1, + sym_type_descriptor, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102088,593 +107671,869 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42564] = 21, + [47735] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3090), 1, - anon_sym_COLON, - STATE(720), 1, + ACTIONS(3118), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1102), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42636] = 22, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47813] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(3092), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3094), 1, - anon_sym_RBRACK, - STATE(720), 1, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1103), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42710] = 21, + [47891] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3096), 1, + ACTIONS(3122), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1104), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42782] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47969] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(3124), 1, + anon_sym_RPAREN, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1105), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42854] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48047] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1677), 1, + anon_sym_enum, + ACTIONS(1825), 1, + sym_identifier, + STATE(1106), 1, + sym_comment, + STATE(1124), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1153), 1, + sym__type_specifier, + STATE(1159), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1884), 1, + sym_type_descriptor, + ACTIONS(45), 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(49), 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, + [48111] = 16, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1677), 1, + anon_sym_enum, + ACTIONS(1825), 1, + sym_identifier, + STATE(1107), 1, sym_comment, - ACTIONS(2249), 1, + STATE(1124), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1153), 1, + sym__type_specifier, + STATE(1159), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1883), 1, + sym_type_descriptor, + ACTIONS(45), 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(49), 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, + [48175] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3100), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(3126), 1, + anon_sym_COLON, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1108), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42926] = 21, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48253] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3102), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3128), 1, + anon_sym_SEMI, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1109), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42998] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48331] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2044), 1, + anon_sym_RBRACK, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3068), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1110), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3104), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43068] = 21, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48406] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2010), 1, + anon_sym_RBRACK, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3068), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3078), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3106), 1, - anon_sym_SEMI, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1111), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43140] = 20, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48481] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(3108), 1, + ACTIONS(3130), 1, anon_sym_COMMA, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1112), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43209] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48556] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1677), 1, + anon_sym_enum, + ACTIONS(3032), 1, + sym_identifier, + ACTIONS(3034), 1, + sym_primitive_type, + STATE(1113), 1, + sym_comment, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1188), 1, + sym__type_specifier, + STATE(1250), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(45), 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(49), 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, + [48617] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1114), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(3134), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2896), 1, + anon_sym_COLON, + ACTIONS(3132), 21, + 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, + sym_primitive_type, + sym_identifier, + [48658] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(3110), 1, + ACTIONS(3136), 1, anon_sym_COLON, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1115), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43278] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48733] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1116), 1, sym_comment, - ACTIONS(2008), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(3140), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2735), 1, + anon_sym_COLON, + ACTIONS(3138), 21, + 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, + sym_primitive_type, + sym_identifier, + [48774] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1117), 1, + sym_comment, + ACTIONS(3144), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3142), 21, + 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, + sym_primitive_type, + sym_identifier, + [48815] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3060), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3146), 1, + anon_sym_RBRACK, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1118), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43347] = 12, + [48890] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1144), 1, + sym_type_qualifier, + STATE(1119), 2, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2829), 1, - sym_identifier, - ACTIONS(2831), 1, + aux_sym__type_definition_type_repeat1, + ACTIONS(2348), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2833), 1, anon_sym_STAR, - ACTIONS(2837), 1, - sym_primitive_type, - STATE(1360), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2835), 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_LBRACK, + anon_sym_COLON, + ACTIONS(3148), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102684,758 +108543,1071 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43400] = 20, + ACTIONS(2346), 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, + [48935] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3151), 1, + anon_sym_COLON, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1120), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43469] = 20, + [49010] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2010), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1994), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3060), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1121), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43538] = 20, + [49085] = 15, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1825), 1, + sym_identifier, + ACTIONS(3084), 1, + anon_sym_enum, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1122), 1, sym_comment, - ACTIONS(2038), 1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1151), 1, + sym__type_specifier, + STATE(1159), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(45), 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(49), 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, + [49146] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2046), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3060), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1123), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43607] = 20, + [49221] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1677), 1, + anon_sym_enum, + ACTIONS(1825), 1, + sym_identifier, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1124), 1, + sym_comment, + STATE(1144), 1, + sym_type_qualifier, + STATE(1151), 1, + sym__type_specifier, + STATE(1159), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(45), 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(49), 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, + [49282] = 15, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2849), 1, + sym_identifier, + ACTIONS(2851), 1, + anon_sym_LPAREN2, + ACTIONS(2853), 1, + anon_sym_STAR, + ACTIONS(2857), 1, + sym_primitive_type, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1125), 1, sym_comment, - ACTIONS(2040), 1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1386), 1, + sym__type_declarator, + STATE(1896), 1, + sym_ms_based_modifier, + ACTIONS(2855), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1464), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(49), 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, + [49343] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2012), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3060), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1126), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43676] = 20, + [49418] = 15, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2849), 1, + sym_identifier, + ACTIONS(2851), 1, + anon_sym_LPAREN2, + ACTIONS(2853), 1, + anon_sym_STAR, + ACTIONS(2857), 1, + sym_primitive_type, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1127), 1, sym_comment, - ACTIONS(2042), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1390), 1, + sym__type_declarator, + STATE(1896), 1, + sym_ms_based_modifier, + ACTIONS(2855), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1464), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(49), 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, + [49479] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1128), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43745] = 20, + [49554] = 15, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2849), 1, + sym_identifier, + ACTIONS(2851), 1, + anon_sym_LPAREN2, + ACTIONS(2853), 1, + anon_sym_STAR, + ACTIONS(2857), 1, + sym_primitive_type, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1129), 1, sym_comment, - ACTIONS(2048), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1400), 1, + sym__type_declarator, + STATE(1896), 1, + sym_ms_based_modifier, + ACTIONS(2855), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1464), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(49), 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, + [49615] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1130), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43814] = 20, + [49690] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1996), 1, + anon_sym_RBRACK, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3068), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3078), 1, anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_COLON, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1131), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43883] = 20, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49765] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2048), 1, + anon_sym_RBRACK, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3068), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3078), 1, anon_sym_QMARK, - ACTIONS(3114), 1, - anon_sym_COLON, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1132), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43952] = 20, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49840] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1998), 1, + anon_sym_RBRACK, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(3058), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3068), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3078), 1, anon_sym_QMARK, - ACTIONS(3116), 1, - anon_sym_COLON, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1133), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44021] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2829), 1, - sym_identifier, - ACTIONS(2831), 1, - anon_sym_LPAREN2, - ACTIONS(2833), 1, - anon_sym_STAR, - ACTIONS(2837), 1, - sym_primitive_type, - STATE(1361), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2835), 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, - [44074] = 20, + ACTIONS(3076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49915] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1992), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3060), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1134), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44143] = 20, + [49990] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3060), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - ACTIONS(3118), 1, + ACTIONS(3157), 1, anon_sym_RBRACK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1135), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44212] = 12, + [50065] = 22, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + ACTIONS(3159), 1, + anon_sym_COLON, + STATE(734), 1, + sym_argument_list, + STATE(1136), 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(1819), 1, - sym_identifier, - STATE(1122), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1113), 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(821), 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, - [44265] = 20, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50140] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(3120), 1, + ACTIONS(3161), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1137), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2928), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2932), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, + [50215] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_LBRACK, + ACTIONS(2916), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, + anon_sym_CARET, + ACTIONS(2924), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2942), 1, + anon_sym_QMARK, + ACTIONS(3163), 1, + anon_sym_COLON, + STATE(734), 1, + sym_argument_list, + STATE(1138), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2269), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2914), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44334] = 20, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50290] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2038), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(3060), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3062), 1, + anon_sym_AMP_AMP, + ACTIONS(3064), 1, + anon_sym_PIPE, + ACTIONS(3066), 1, + anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_AMP, + ACTIONS(3078), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1139), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(3054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3056), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3070), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3074), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3076), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44403] = 12, + [50365] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(2743), 1, + anon_sym_LBRACE, + STATE(832), 1, + sym_attribute_specifier, + STATE(1140), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(1198), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + STATE(1146), 1, + sym_enumerator_list, + ACTIONS(2807), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2805), 16, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 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, @@ -103444,88 +109616,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44456] = 20, + sym_primitive_type, + sym_identifier, + [50413] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2916), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2918), 1, + anon_sym_AMP_AMP, + ACTIONS(2920), 1, + anon_sym_PIPE, + ACTIONS(2922), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2924), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2940), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_QMARK, - ACTIONS(3122), 1, - anon_sym_RPAREN, - STATE(720), 1, + STATE(734), 1, sym_argument_list, - ACTIONS(2253), 2, + STATE(1141), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2269), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2914), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44525] = 12, + ACTIONS(2932), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50485] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(2743), 1, + anon_sym_LBRACE, + ACTIONS(3165), 1, + anon_sym_COLON, + STATE(838), 1, + sym_attribute_specifier, + STATE(1142), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(3008), 1, - anon_sym_enum, - STATE(1122), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, + STATE(1145), 1, + sym_enumerator_list, + ACTIONS(2738), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2736), 16, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 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, @@ -103534,24 +109707,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44578] = 3, + sym_primitive_type, + sym_identifier, + [50535] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3167), 1, + anon_sym_SEMI, + STATE(1143), 1, + sym_comment, + ACTIONS(2185), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2187), 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, + [50577] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1144), 1, sym_comment, - ACTIONS(3126), 6, + ACTIONS(2379), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3124), 21, + ACTIONS(2377), 19, 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, @@ -103565,25 +109775,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [44613] = 3, + [50616] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + STATE(828), 1, + sym_attribute_specifier, + STATE(1145), 1, sym_comment, - ACTIONS(3130), 6, + ACTIONS(2828), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3128), 21, + ACTIONS(2826), 16, 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, @@ -103598,39 +109814,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [44648] = 12, + [50658] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + STATE(836), 1, + sym_attribute_specifier, + STATE(1146), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2829), 1, - sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2837), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2833), 1, anon_sym_STAR, - ACTIONS(2837), 1, - sym_primitive_type, - STATE(1355), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2835), 4, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2835), 16, + anon_sym___extension__, + anon_sym___based, 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, @@ -103639,352 +109847,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44701] = 20, + sym_primitive_type, + sym_identifier, + [50700] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + STATE(824), 1, + sym_attribute_specifier, + STATE(1147), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2844), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2251), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(3132), 1, anon_sym_COLON, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [44770] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, - anon_sym_QMARK, - ACTIONS(3134), 1, - anon_sym_RBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44839] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2340), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3136), 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(2338), 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, - [44878] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_SEMI, - ACTIONS(2189), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2191), 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, - [44983] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2725), 1, - anon_sym_LBRACE, - ACTIONS(3141), 1, - anon_sym_COLON, - STATE(808), 1, - sym_attribute_specifier, - STATE(1119), 1, - sym_enumerator_list, - ACTIONS(2720), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2718), 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, - [45027] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [45093] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2725), 1, - anon_sym_LBRACE, - STATE(839), 1, - sym_attribute_specifier, - STATE(1121), 1, - sym_enumerator_list, - ACTIONS(2775), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2773), 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, - [45135] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(844), 1, - sym_attribute_specifier, - ACTIONS(2810), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2808), 16, + ACTIONS(2842), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -104001,96 +109884,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [45171] = 5, + [50742] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(824), 1, - sym_attribute_specifier, - ACTIONS(2817), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2815), 16, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, 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, - [45207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(822), 1, - sym_attribute_specifier, - ACTIONS(2824), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1873), 1, anon_sym_LPAREN2, + ACTIONS(1875), 1, anon_sym_STAR, + ACTIONS(2803), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2822), 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, - [45243] = 11, - ACTIONS(3), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1148), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1869), 1, - anon_sym_STAR, - ACTIONS(2753), 1, - anon_sym_LBRACK, - STATE(1469), 1, + STATE(1498), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1532), 1, sym_parameter_list, - STATE(1126), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3143), 3, + ACTIONS(3169), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2962), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -104099,34 +109925,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45290] = 11, + [50797] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1447), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1149), 1, + sym_comment, + STATE(1500), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1532), 1, sym_parameter_list, - STATE(1127), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3145), 3, + ACTIONS(3171), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2962), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -104135,34 +109966,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45337] = 11, + [50852] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1446), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1150), 1, + sym_comment, + STATE(1501), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1532), 1, sym_parameter_list, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2936), 3, + ACTIONS(2960), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2962), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -104171,34 +110007,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45384] = 11, + [50907] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1475), 1, - sym__abstract_declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1113), 2, + STATE(1144), 1, sym_type_qualifier, + STATE(1148), 1, aux_sym__type_definition_type_repeat1, - ACTIONS(2780), 3, + STATE(1151), 1, + sym_comment, + STATE(1508), 1, + sym__abstract_declarator, + STATE(1532), 1, + sym_parameter_list, + ACTIONS(3173), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2962), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -104207,34 +110048,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45431] = 11, + [50962] = 14, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2849), 1, + sym_identifier, + ACTIONS(2851), 1, + anon_sym_LPAREN2, + ACTIONS(2853), 1, + anon_sym_STAR, + ACTIONS(2857), 1, + sym_primitive_type, + STATE(1152), 1, sym_comment, - ACTIONS(47), 1, + STATE(1316), 1, + sym_ms_call_modifier, + STATE(1463), 1, + sym__type_declarator, + STATE(1896), 1, + sym_ms_based_modifier, + ACTIONS(2855), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1464), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [51017] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1473), 1, - sym__abstract_declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1113), 2, + STATE(1144), 1, sym_type_qualifier, + STATE(1149), 1, aux_sym__type_definition_type_repeat1, - ACTIONS(3147), 3, + STATE(1153), 1, + sym_comment, + STATE(1491), 1, + sym__abstract_declarator, + STATE(1532), 1, + sym_parameter_list, + ACTIONS(3175), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2962), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -104243,34 +110130,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45478] = 11, + [51072] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1449), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1154), 1, + sym_comment, + STATE(1494), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1532), 1, sym_parameter_list, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3149), 3, + ACTIONS(2797), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2962), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -104279,107 +110171,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45525] = 12, + [51127] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2831), 1, - anon_sym_LPAREN2, - ACTIONS(2833), 1, - anon_sym_STAR, - ACTIONS(2837), 1, - sym_primitive_type, - STATE(1288), 1, - sym_ms_call_modifier, - STATE(1437), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - ACTIONS(2835), 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(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [45574] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(3000), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(3002), 1, anon_sym_STAR, - ACTIONS(3151), 1, - sym_identifier, - STATE(690), 1, - sym__old_style_function_declarator, - STATE(1309), 1, - sym_ms_call_modifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1362), 1, - sym__declarator, - STATE(1466), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1626), 1, - sym_init_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1374), 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, - [45628] = 10, - ACTIONS(3), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1155), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, - sym_identifier, - ACTIONS(2954), 1, - anon_sym_LPAREN2, - ACTIONS(2956), 1, - anon_sym_STAR, - STATE(1334), 1, + STATE(1376), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1969), 1, sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1399), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -104389,31 +110210,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45672] = 10, + [51179] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(3000), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(3002), 1, anon_sym_STAR, - STATE(1344), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1156), 1, + sym_comment, + STATE(1357), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1969), 1, sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1399), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -104423,66 +110249,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45716] = 15, + [51231] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(699), 1, + STATE(698), 1, sym__old_style_function_declarator, - STATE(1311), 1, + STATE(1157), 1, + sym_comment, + STATE(1346), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1357), 1, + STATE(1394), 1, sym__declarator, - STATE(1471), 1, + STATE(1485), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1631), 1, + STATE(1708), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45770] = 6, + [51291] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1158), 1, sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2455), 2, + STATE(1332), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(49), 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, + [51343] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2533), 1, sym_primitive_type, + ACTIONS(3179), 1, sym_identifier, - ACTIONS(2459), 4, + STATE(1159), 1, + sym_comment, + STATE(1162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2627), 6, + ACTIONS(2529), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2624), 9, + ACTIONS(2531), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -104492,109 +110366,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45806] = 15, + [51387] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(693), 1, + STATE(722), 1, sym__old_style_function_declarator, - STATE(1319), 1, + STATE(1160), 1, + sym_comment, + STATE(1336), 1, sym_ms_call_modifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1358), 1, + STATE(1383), 1, sym__declarator, - STATE(1450), 1, + STATE(1384), 1, + sym_function_declarator, + STATE(1495), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1607), 1, + STATE(1672), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45860] = 15, + [51447] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(713), 1, + STATE(714), 1, sym__old_style_function_declarator, - STATE(1315), 1, + STATE(1161), 1, + sym_comment, + STATE(1335), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1369), 1, + STATE(1401), 1, sym__declarator, - STATE(1444), 1, + STATE(1484), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1622), 1, + STATE(1640), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45914] = 10, + [51507] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1162), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2519), 2, + sym_primitive_type, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2523), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2657), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2946), 1, anon_sym_STAR, - STATE(1312), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1113), 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_LBRACK, + anon_sym_COLON, + ACTIONS(2654), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -104604,96 +110486,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45958] = 10, + [51549] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1307), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1163), 1, + sym_comment, + STATE(1342), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1354), 5, + STATE(1384), 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, - [46002] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, - sym_identifier, - ACTIONS(2954), 1, - anon_sym_LPAREN2, - ACTIONS(2956), 1, - anon_sym_STAR, - STATE(1350), 1, - sym__field_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1399), 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, - [46046] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2662), 1, - sym_primitive_type, - ACTIONS(3153), 1, - sym_identifier, - STATE(1133), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3155), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2656), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2658), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -104703,20 +110525,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46084] = 5, + [51601] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3183), 1, anon_sym_LPAREN2, - STATE(1012), 1, + STATE(1034), 1, sym_preproc_argument_list, - ACTIONS(3161), 5, + STATE(1164), 1, + sym_comment, + ACTIONS(3185), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3157), 15, + ACTIONS(3181), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -104732,31 +110558,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [46118] = 10, + [51641] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1321), 1, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1165), 1, + sym_comment, + STATE(1344), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(49), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -104766,349 +110597,474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46162] = 14, + [51693] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2998), 1, + sym_identifier, + ACTIONS(3000), 1, + anon_sym_LPAREN2, + ACTIONS(3002), 1, + anon_sym_STAR, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1166), 1, sym_comment, - ACTIONS(1753), 1, + STATE(1378), 1, + sym__field_declarator, + STATE(1969), 1, + sym_ms_based_modifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(49), 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, + [51745] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1305), 1, + STATE(702), 1, + sym__old_style_function_declarator, + STATE(1167), 1, + sym_comment, + STATE(1338), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1396), 1, sym__declarator, - STATE(1480), 1, + STATE(1474), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1596), 1, + STATE(1664), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46213] = 14, + [51805] = 18, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3187), 1, + anon_sym_COMMA, + ACTIONS(3189), 1, + anon_sym_RPAREN, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3199), 1, + anon_sym_AMP_AMP, + ACTIONS(3201), 1, + anon_sym_PIPE, + ACTIONS(3203), 1, + anon_sym_CARET, + ACTIONS(3205), 1, + anon_sym_AMP, + STATE(1168), 1, sym_comment, - ACTIONS(1753), 1, + STATE(1719), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51866] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1311), 1, + STATE(1169), 1, + sym_comment, + STATE(1335), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1379), 1, + STATE(1414), 1, sym__declarator, - STATE(1471), 1, + STATE(1484), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1631), 1, + STATE(1640), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46264] = 14, + [51923] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1308), 1, + STATE(1170), 1, + sym_comment, + STATE(1341), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1469), 1, sym__declarator, - STATE(1450), 1, + STATE(1485), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1607), 1, + STATE(1708), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46315] = 14, + [51980] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1313), 1, + STATE(1171), 1, + sym_comment, + STATE(1331), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1469), 1, sym__declarator, - STATE(1466), 1, + STATE(1514), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1626), 1, + STATE(1744), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46366] = 10, + [52037] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3165), 1, + ACTIONS(3217), 1, anon_sym_RPAREN, - ACTIONS(3167), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3175), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1168), 1, + sym__preproc_expression, + STATE(1172), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 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, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46409] = 14, + [52088] = 18, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3187), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3199), 1, + anon_sym_AMP_AMP, + ACTIONS(3201), 1, + anon_sym_PIPE, + ACTIONS(3203), 1, + anon_sym_CARET, + ACTIONS(3205), 1, + anon_sym_AMP, + ACTIONS(3231), 1, + anon_sym_RPAREN, + STATE(1173), 1, sym_comment, - ACTIONS(1753), 1, + STATE(1614), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52149] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1320), 1, + STATE(1174), 1, + sym_comment, + STATE(1347), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1469), 1, sym__declarator, - STATE(1472), 1, + STATE(1484), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1594), 1, + STATE(1640), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46460] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_COMMA, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, - anon_sym_AMP_AMP, - ACTIONS(3193), 1, - anon_sym_PIPE, - ACTIONS(3195), 1, - anon_sym_CARET, - ACTIONS(3197), 1, - anon_sym_AMP, - STATE(1684), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3183), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46515] = 14, + [52206] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1306), 1, + STATE(1175), 1, + sym_comment, + STATE(1338), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1403), 1, sym__declarator, - STATE(1499), 1, + STATE(1474), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1712), 1, + STATE(1664), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46566] = 16, + [52263] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_COMMA, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(3187), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, anon_sym_SLASH, - ACTIONS(3189), 1, + ACTIONS(3197), 1, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, + ACTIONS(3199), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3201), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3203), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3207), 1, + ACTIONS(3233), 1, anon_sym_RPAREN, - STATE(1673), 1, + STATE(1176), 1, + sym_comment, + STATE(1603), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3183), 2, + ACTIONS(3191), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3193), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3211), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46621] = 5, - ACTIONS(3157), 1, + [52324] = 7, + ACTIONS(3181), 1, anon_sym_LF, - ACTIONS(3209), 1, + ACTIONS(3235), 1, anon_sym_LPAREN2, - ACTIONS(3211), 1, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1177), 1, sym_comment, - STATE(1251), 1, + STATE(1259), 1, sym_preproc_argument_list, - ACTIONS(3161), 18, + ACTIONS(3185), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105127,380 +111083,550 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [46654] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, - sym_identifier, - ACTIONS(3167), 1, - anon_sym_LPAREN2, - ACTIONS(3169), 1, - anon_sym_defined, - ACTIONS(3213), 1, - anon_sym_RPAREN, - ACTIONS(3215), 1, - sym_number_literal, - ACTIONS(3171), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3173), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3177), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1150), 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, - [46697] = 14, + [52363] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1314), 1, + STATE(1178), 1, + sym_comment, + STATE(1348), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1469), 1, sym__declarator, - STATE(1471), 1, + STATE(1474), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1631), 1, + STATE(1664), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46748] = 14, + [52420] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1315), 1, + STATE(1179), 1, + sym_comment, + STATE(1334), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1375), 1, + STATE(1469), 1, sym__declarator, - STATE(1444), 1, + STATE(1495), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1622), 1, + STATE(1672), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46799] = 14, + [52477] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - ACTIONS(3151), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, 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(1374), 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, - [46850] = 14, - ACTIONS(3), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3221), 1, + anon_sym_defined, + ACTIONS(3227), 1, + sym_number_literal, + ACTIONS(3241), 1, + anon_sym_RPAREN, + STATE(1176), 1, + sym__preproc_expression, + STATE(1180), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(3223), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3229), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1231), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [52528] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1309), 1, + STATE(1181), 1, + sym_comment, + STATE(1333), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1373), 1, + STATE(1469), 1, sym__declarator, - STATE(1466), 1, + STATE(1505), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1626), 1, + STATE(1676), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46901] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, - anon_sym_AMP_AMP, - ACTIONS(3193), 1, - anon_sym_PIPE, - ACTIONS(3195), 1, - anon_sym_CARET, - ACTIONS(3197), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_RPAREN, - STATE(1595), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3183), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46956] = 14, + [52585] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1304), 1, + STATE(1182), 1, + sym_comment, + STATE(1336), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1384), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1406), 1, sym__declarator, - STATE(1444), 1, + STATE(1495), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1622), 1, + STATE(1672), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47007] = 10, + [52642] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3167), 1, - anon_sym_LPAREN2, - ACTIONS(3169), 1, - anon_sym_defined, ACTIONS(3219), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(3221), 1, + anon_sym_defined, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3243), 1, + anon_sym_RPAREN, + STATE(1173), 1, + sym__preproc_expression, + STATE(1183), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1157), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47050] = 14, + [52693] = 16, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + ACTIONS(3177), 1, + sym_identifier, + STATE(1184), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, - anon_sym_AMP_AMP, - ACTIONS(3193), 1, - anon_sym_PIPE, + STATE(1346), 1, + sym_ms_call_modifier, + STATE(1384), 1, + sym_function_declarator, + STATE(1411), 1, + sym__declarator, + STATE(1485), 1, + sym__declaration_declarator, + STATE(1570), 1, + sym__function_declaration_declarator, + STATE(1708), 1, + sym_init_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1407), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52750] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + ACTIONS(3177), 1, + sym_identifier, + STATE(1185), 1, + sym_comment, + STATE(1349), 1, + sym_ms_call_modifier, + STATE(1384), 1, + sym_function_declarator, + STATE(1469), 1, + sym__declarator, + STATE(1493), 1, + sym__declaration_declarator, + STATE(1570), 1, + sym__function_declaration_declarator, + STATE(1701), 1, + sym_init_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1407), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52807] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(3195), 1, - anon_sym_CARET, - ACTIONS(3197), 1, - anon_sym_AMP, - ACTIONS(3183), 2, + anon_sym_SLASH, + STATE(1186), 1, + sym_comment, + ACTIONS(3191), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3193), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3211), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3223), 2, + ACTIONS(3247), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3245), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [52855] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1187), 1, + sym_comment, + ACTIONS(3251), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3249), 15, anon_sym_COMMA, anon_sym_RPAREN, - [47100] = 9, + 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, + [52889] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1144), 1, + sym_type_qualifier, + STATE(1188), 1, sym_comment, - ACTIONS(3225), 1, + STATE(1228), 1, + aux_sym__type_definition_type_repeat1, + ACTIONS(3255), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3253), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(49), 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, + [52929] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1189), 1, + sym_comment, + ACTIONS(3259), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3257), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(49), 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, + [52969] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, + sym_identifier, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3235), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1190), 1, + sym_comment, + STATE(1292), 1, + sym__preproc_expression, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1255), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47140] = 6, + [53017] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1191), 1, sym_comment, - ACTIONS(3187), 1, + STATE(1287), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53065] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, anon_sym_SLASH, - ACTIONS(3183), 2, + STATE(1192), 1, + sym_comment, + ACTIONS(3191), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3193), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3241), 4, + ACTIONS(3247), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3239), 11, + ACTIONS(3245), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -105512,26 +111638,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47174] = 7, + [53105] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, anon_sym_SLASH, - ACTIONS(3183), 2, + STATE(1193), 1, + sym_comment, + ACTIONS(3191), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3193), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3205), 2, + ACTIONS(3213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3241), 4, + ACTIONS(3247), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3239), 9, + ACTIONS(3245), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -105541,372 +111671,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47210] = 9, + [53147] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, anon_sym_SLASH, - ACTIONS(3183), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3241), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3239), 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, - [47250] = 10, - ACTIONS(3), 1, + STATE(1194), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3183), 2, + ACTIONS(3191), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3193), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3211), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3241), 2, + ACTIONS(3247), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3239), 5, + ACTIONS(3245), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [47292] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3197), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE, - ACTIONS(3183), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3239), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [47336] = 9, + [53193] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3243), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1195), 1, + sym_comment, + STATE(1291), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1242), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47376] = 12, + [53241] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1196), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3195), 1, - anon_sym_CARET, - ACTIONS(3197), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE, - ACTIONS(3183), 2, + STATE(1290), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3239), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [47422] = 12, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53289] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1197), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3193), 1, - anon_sym_PIPE, - ACTIONS(3195), 1, - anon_sym_CARET, - ACTIONS(3197), 1, - anon_sym_AMP, - ACTIONS(3183), 2, + STATE(1295), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3239), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [47468] = 13, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53337] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1198), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3191), 1, - anon_sym_AMP_AMP, - ACTIONS(3193), 1, - anon_sym_PIPE, - ACTIONS(3195), 1, - anon_sym_CARET, - ACTIONS(3197), 1, - anon_sym_AMP, - ACTIONS(3183), 2, + STATE(1293), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3239), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [47516] = 9, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53385] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3245), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1199), 1, + sym_comment, + STATE(1289), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1227), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47556] = 9, + [53433] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3247), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1200), 1, + sym_comment, + STATE(1283), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1266), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47596] = 9, + [53481] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3249), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1201), 1, + sym_comment, + STATE(1267), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1248), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47636] = 3, + [53529] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1202), 1, sym_comment, - ACTIONS(3241), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3239), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1272), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47664] = 5, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53577] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1203), 1, + sym_comment, + STATE(1257), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53625] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1204), 1, sym_comment, - ACTIONS(3187), 1, + STATE(1262), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53673] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_defined, + ACTIONS(3271), 1, + sym_number_literal, + STATE(1205), 1, + sym_comment, + STATE(1265), 1, + sym__preproc_expression, + ACTIONS(3267), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3269), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3273), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1269), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [53721] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1206), 1, + sym_comment, + ACTIONS(3277), 5, anon_sym_SLASH, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3241), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3239), 13, + ACTIONS(3275), 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, @@ -105916,136 +112131,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47696] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1196), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3251), 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, - [47728] = 9, + [53755] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3255), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1207), 1, + sym_comment, + STATE(1266), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1252), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47768] = 9, + [53803] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3205), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE, + STATE(1208), 1, + sym_comment, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [53853] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3203), 1, + anon_sym_CARET, + ACTIONS(3205), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE, + STATE(1209), 1, + sym_comment, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [53905] = 14, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3201), 1, + anon_sym_PIPE, + ACTIONS(3203), 1, + anon_sym_CARET, + ACTIONS(3205), 1, + anon_sym_AMP, + STATE(1210), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [53957] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3257), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1211), 1, + sym_comment, + STATE(1224), 1, + sym__preproc_expression, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1221), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47808] = 9, + [54005] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3259), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1212), 1, + sym_comment, + STATE(1270), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1254), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47848] = 3, + [54053] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3199), 1, + anon_sym_AMP_AMP, + ACTIONS(3201), 1, + anon_sym_PIPE, + ACTIONS(3203), 1, + anon_sym_CARET, + ACTIONS(3205), 1, + anon_sym_AMP, + STATE(1213), 1, + sym_comment, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [54107] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1214), 1, sym_comment, - ACTIONS(3263), 5, + ACTIONS(3247), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 15, + ACTIONS(3245), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -106061,361 +112420,576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47876] = 9, + [54141] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, + anon_sym_SLASH, + STATE(1215), 1, sym_comment, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, - anon_sym_defined, - ACTIONS(3265), 1, - sym_number_literal, - ACTIONS(3231), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3247), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3245), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 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, - [47916] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54179] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1216), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3281), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3279), 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, + [54213] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3267), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1217), 1, + sym_comment, + STATE(1273), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 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, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47956] = 9, + [54261] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1218), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3285), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3283), 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, + [54295] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3269), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1219), 1, + sym_comment, + STATE(1286), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1247), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47996] = 13, + [54343] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1144), 1, + sym_type_qualifier, + STATE(1189), 1, + aux_sym__type_definition_type_repeat1, + STATE(1220), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(3289), 2, anon_sym_LPAREN2, - ACTIONS(1751), 1, anon_sym_STAR, - ACTIONS(1753), 1, + ACTIONS(3287), 7, anon_sym___based, - ACTIONS(2745), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(2753), 1, + ACTIONS(49), 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, + [54383] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1755), 1, + anon_sym_LPAREN2, + ACTIONS(1757), 1, + anon_sym_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1394), 1, + STATE(1221), 1, + sym_comment, + STATE(1433), 1, sym__declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1491), 1, + STATE(1523), 1, sym__abstract_declarator, - STATE(1803), 1, + STATE(1532), 1, + sym_parameter_list, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(3271), 2, + ACTIONS(3291), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48044] = 9, + [54437] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3273), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1222), 1, + sym_comment, + STATE(1285), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1244), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48084] = 9, + [54485] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3275), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1216), 1, + sym__preproc_expression, + STATE(1223), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1238), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48124] = 9, + [54533] = 16, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3199), 1, + anon_sym_AMP_AMP, + ACTIONS(3201), 1, + anon_sym_PIPE, + ACTIONS(3203), 1, + anon_sym_CARET, + ACTIONS(3205), 1, + anon_sym_AMP, + STATE(1224), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3293), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54589] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3277), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1225), 1, + sym_comment, + STATE(1282), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1231), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48164] = 9, + [54637] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3279), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1226), 1, + sym_comment, + STATE(1284), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1256), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48204] = 9, + [54685] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3281), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1227), 1, + sym_comment, + STATE(1280), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1230), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48244] = 9, + [54733] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1119), 1, + aux_sym__type_definition_type_repeat1, + STATE(1144), 1, + sym_type_qualifier, + STATE(1228), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3297), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3295), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(49), 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, + [54773] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3283), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1229), 1, + sym_comment, + STATE(1277), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3273), 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, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48284] = 9, + [54821] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3285), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1230), 1, + sym_comment, + STATE(1252), 1, + sym__preproc_expression, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1207), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48324] = 3, + [54869] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1231), 1, sym_comment, - ACTIONS(3289), 5, + ACTIONS(3185), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3287), 15, + ACTIONS(3181), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -106431,136 +113005,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48352] = 9, + [54903] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3291), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1192), 1, + sym__preproc_expression, + STATE(1232), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1225), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48392] = 9, + [54951] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1233), 1, sym_comment, - ACTIONS(3163), 1, - sym_identifier, - ACTIONS(3167), 1, - anon_sym_LPAREN2, - ACTIONS(3169), 1, - anon_sym_defined, - ACTIONS(3293), 1, - sym_number_literal, - ACTIONS(3171), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3173), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3177), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1237), 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, - [48432] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, - anon_sym_defined, - ACTIONS(3295), 1, - sym_number_literal, - ACTIONS(3231), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3237), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1246), 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, - [48472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3297), 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, - [48504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 5, + ACTIONS(2197), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2227), 15, + ACTIONS(2199), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -106576,629 +113070,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48532] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1218), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3301), 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, - [48564] = 9, + [54985] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3305), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3237), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1243), 7, + STATE(1193), 1, 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, - [48604] = 9, - ACTIONS(3), 1, + STATE(1234), 1, sym_comment, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, - anon_sym_defined, - ACTIONS(3307), 1, - sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1250), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48644] = 9, + [55033] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3309), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3237), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1240), 7, + STATE(1194), 1, 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, - [48684] = 9, - ACTIONS(3), 1, + STATE(1235), 1, sym_comment, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, - anon_sym_defined, - ACTIONS(3311), 1, - sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1234), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48724] = 9, + [55081] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3313), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3171), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3173), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3177), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1174), 7, + STATE(1186), 1, 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, - [48764] = 9, - ACTIONS(3), 1, + STATE(1236), 1, sym_comment, - ACTIONS(3163), 1, - sym_identifier, - ACTIONS(3167), 1, - anon_sym_LPAREN2, - ACTIONS(3169), 1, - anon_sym_defined, - ACTIONS(3315), 1, - sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1175), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48804] = 9, + [55129] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3317), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1237), 1, + sym_comment, + STATE(1279), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1160), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48844] = 9, + [55177] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3319), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3237), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1232), 7, + STATE(1208), 1, 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, - [48884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3321), 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, - [48912] = 9, - ACTIONS(3), 1, + STATE(1238), 1, sym_comment, - ACTIONS(3163), 1, - sym_identifier, - ACTIONS(3167), 1, - anon_sym_LPAREN2, - ACTIONS(3169), 1, - anon_sym_defined, - ACTIONS(3325), 1, - sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1162), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48952] = 9, + [55225] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3327), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1239), 1, + sym_comment, + STATE(1275), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1163), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48992] = 9, + [55273] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3329), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1209), 1, + sym__preproc_expression, + STATE(1240), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1164), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3331), 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, - [49060] = 9, + [55321] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3335), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1210), 1, + sym__preproc_expression, + STATE(1241), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1165), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49100] = 9, + [55369] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3337), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1242), 1, + sym_comment, + STATE(1288), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1166), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49140] = 9, + [55417] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3261), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3265), 1, anon_sym_defined, - ACTIONS(3339), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1243), 1, + sym_comment, + STATE(1281), 1, + sym__preproc_expression, + ACTIONS(3267), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3269), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3273), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1168), 7, - sym__preproc_expression, + STATE(1269), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49180] = 9, + [55465] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3341), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1213), 1, + sym__preproc_expression, + STATE(1244), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1267), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49220] = 9, + [55513] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3343), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3231), 2, + STATE(1214), 1, + sym__preproc_expression, + STATE(1245), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1233), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49260] = 9, + [55561] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3219), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3221), 1, anon_sym_defined, - ACTIONS(3345), 1, + ACTIONS(3227), 1, sym_number_literal, - ACTIONS(3171), 2, + STATE(1215), 1, + sym__preproc_expression, + STATE(1246), 1, + sym_comment, + ACTIONS(3223), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3229), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1169), 7, - sym__preproc_expression, + STATE(1231), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49300] = 5, + [55609] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1247), 1, sym_comment, - ACTIONS(3349), 2, + ACTIONS(2628), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3347), 7, - anon_sym___based, + ACTIONS(3299), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, + ACTIONS(2626), 12, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -107207,43 +113566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49332] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, + sym_primitive_type, sym_identifier, - ACTIONS(3227), 1, - anon_sym_LPAREN2, - ACTIONS(3229), 1, - anon_sym_defined, - ACTIONS(3351), 1, - sym_number_literal, - ACTIONS(3231), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3237), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1262), 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, - [49372] = 3, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3331), 1, + [55646] = 5, + ACTIONS(2974), 1, anon_sym_LF, - ACTIONS(3333), 18, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1248), 1, + sym_comment, + ACTIONS(2972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107262,43 +113596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49399] = 10, - ACTIONS(3211), 1, - sym_comment, + [55679] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3275), 1, anon_sym_LF, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3361), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3241), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3355), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3363), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [49440] = 3, - ACTIONS(2227), 1, - anon_sym_LF, - ACTIONS(3211), 1, + STATE(1249), 1, sym_comment, - ACTIONS(2225), 18, + ACTIONS(3277), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107317,24 +113624,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49467] = 7, + [55712] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3373), 1, + ACTIONS(3308), 1, sym_primitive_type, - STATE(1261), 1, + STATE(1250), 1, + sym_comment, + STATE(1251), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2656), 2, + ACTIONS(2529), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3370), 4, + ACTIONS(3305), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2658), 10, + ACTIONS(2531), 10, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -107345,107 +113656,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49502] = 3, - ACTIONS(2950), 1, - anon_sym_LF, - ACTIONS(3211), 1, + [55753] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1251), 1, sym_comment, - ACTIONS(2948), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2657), 2, + anon_sym_LPAREN2, anon_sym_STAR, + ACTIONS(3311), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2654), 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, + [55790] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3197), 1, anon_sym_PIPE_PIPE, + ACTIONS(3199), 1, anon_sym_AMP_AMP, + ACTIONS(3201), 1, anon_sym_PIPE, + ACTIONS(3203), 1, anon_sym_CARET, + ACTIONS(3205), 1, anon_sym_AMP, + ACTIONS(3315), 1, + anon_sym_RPAREN, + STATE(1252), 1, + sym_comment, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3209), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3213), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49529] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3376), 1, + [55845] = 5, + ACTIONS(2992), 1, anon_sym_LF, - ACTIONS(3378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, - anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3353), 2, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1253), 1, + sym_comment, + ACTIONS(2990), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 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, - [49574] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(709), 1, - sym__old_style_function_declarator, - STATE(1327), 1, - sym_ms_call_modifier, - STATE(1383), 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, - [49617] = 4, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3239), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55878] = 5, + ACTIONS(2978), 1, anon_sym_LF, - ACTIONS(3355), 3, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1254), 1, + sym_comment, + ACTIONS(2976), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107459,250 +113781,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49646] = 11, + [55911] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1255), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2617), 2, anon_sym_LPAREN2, - ACTIONS(2946), 1, anon_sym_STAR, - STATE(695), 1, - sym__old_style_function_declarator, - STATE(1341), 1, - sym_ms_call_modifier, - STATE(1376), 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, - [49689] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + ACTIONS(3317), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2615), 12, + anon_sym___extension__, anon_sym___based, - ACTIONS(2745), 1, + 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, - ACTIONS(2944), 1, + [55948] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1256), 1, + sym_comment, + ACTIONS(2621), 2, anon_sym_LPAREN2, - ACTIONS(2946), 1, anon_sym_STAR, - STATE(707), 1, - sym__old_style_function_declarator, - STATE(1353), 1, - sym_ms_call_modifier, - STATE(1388), 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, - [49732] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3378), 1, + ACTIONS(3320), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2619), 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, + [55985] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, + anon_sym_LF, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3327), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3384), 1, - anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + STATE(1257), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49777] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, - anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3386), 1, + [56036] = 5, + ACTIONS(2199), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1258), 1, + sym_comment, + ACTIONS(2197), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [49822] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3378), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, anon_sym_PIPE, - ACTIONS(3388), 1, - anon_sym_LF, - ACTIONS(3353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3361), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3363), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49867] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, - anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3390), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56069] = 5, + ACTIONS(2996), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1259), 1, + sym_comment, + ACTIONS(2994), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [49912] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3378), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, anon_sym_PIPE, - ACTIONS(3392), 1, - anon_sym_LF, - ACTIONS(3353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3361), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3363), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49957] = 6, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56102] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1255), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1260), 1, sym_comment, - ACTIONS(1710), 1, - anon_sym_STAR, - ACTIONS(2646), 1, + ACTIONS(2662), 2, anon_sym_LPAREN2, - STATE(1249), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3394), 4, + anon_sym_STAR, + ACTIONS(3341), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1697), 12, + ACTIONS(2660), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -107715,78 +113964,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [49990] = 3, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3261), 1, - anon_sym_LF, - ACTIONS(3263), 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, - [50017] = 14, + [56139] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1256), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1261), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_SLASH, - ACTIONS(3189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, - anon_sym_AMP_AMP, - ACTIONS(3193), 1, - anon_sym_PIPE, - ACTIONS(3195), 1, - anon_sym_CARET, - ACTIONS(3197), 1, - anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_RPAREN, - ACTIONS(3183), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(2666), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3201), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3205), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50066] = 5, - ACTIONS(3211), 1, - sym_comment, + ACTIONS(3344), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2664), 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, + [56176] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, anon_sym_LF, - ACTIONS(3353), 2, + STATE(1262), 1, + sym_comment, + ACTIONS(3247), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3355), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107800,20 +114022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50097] = 5, + [56209] = 7, ACTIONS(3), 1, - sym_comment, - STATE(785), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(822), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2608), 2, + STATE(1263), 1, + sym_comment, + ACTIONS(2573), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3399), 4, + ACTIONS(3347), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2606), 12, + ACTIONS(2571), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -107826,50 +114052,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50128] = 12, - ACTIONS(3211), 1, + [56246] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1263), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1264), 1, sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, - anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3402), 1, - anon_sym_LF, - ACTIONS(3353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3361), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(2541), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3363), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [50173] = 3, - ACTIONS(2978), 1, + ACTIONS(3350), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2539), 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, + [56283] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, anon_sym_LF, - ACTIONS(3211), 1, + STATE(1265), 1, sym_comment, - ACTIONS(2976), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3247), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107883,88 +114111,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50200] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + [56318] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3404), 1, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + ACTIONS(3353), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + STATE(1266), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50245] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, + [56369] = 12, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, + anon_sym_LF, + ACTIONS(3331), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, - anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3406), 1, - anon_sym_LF, - ACTIONS(3353), 2, + STATE(1267), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3247), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50290] = 6, - ACTIONS(3211), 1, - sym_comment, + [56416] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3283), 1, anon_sym_LF, - ACTIONS(3353), 2, + STATE(1268), 1, + sym_comment, + ACTIONS(3285), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107976,44 +114209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50323] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(703), 1, - sym__old_style_function_declarator, - STATE(1347), 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, - [50366] = 3, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3321), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56449] = 5, + ACTIONS(3181), 1, anon_sym_LF, - ACTIONS(3323), 18, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1269), 1, + sym_comment, + ACTIONS(3185), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -108032,81 +114239,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50393] = 7, - ACTIONS(3211), 1, - sym_comment, + [56482] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, - anon_sym_LF, - ACTIONS(3353), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3355), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3363), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3241), 7, - anon_sym_PIPE_PIPE, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, anon_sym_AMP_AMP, + ACTIONS(3329), 1, anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, + ACTIONS(3333), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [50428] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3239), 1, - anon_sym_LF, - ACTIONS(3241), 1, + ACTIONS(3355), 1, anon_sym_PIPE_PIPE, ACTIONS(3357), 1, - anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, - ACTIONS(3380), 1, - anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3353), 2, + anon_sym_LF, + STATE(1270), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50473] = 5, + [56533] = 8, ACTIONS(3), 1, - sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2526), 2, - anon_sym_LPAREN2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1718), 1, anon_sym_STAR, - ACTIONS(3408), 4, + ACTIONS(2623), 1, + anon_sym_LPAREN2, + STATE(1247), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1271), 1, + sym_comment, + ACTIONS(3359), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2524), 12, + ACTIONS(1705), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -108119,479 +114307,669 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50504] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, + [56572] = 13, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, + anon_sym_LF, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3378), 1, + STATE(1272), 1, + sym_comment, + ACTIONS(3247), 2, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3411), 1, - anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50549] = 3, - ACTIONS(2960), 1, + [56621] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3362), 1, anon_sym_LF, - ACTIONS(3211), 1, + STATE(1273), 1, sym_comment, - ACTIONS(2958), 18, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50576] = 11, - ACTIONS(3211), 1, + [56672] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(728), 1, + sym__old_style_function_declarator, + STATE(1274), 1, sym_comment, + STATE(1359), 1, + sym_ms_call_modifier, + STATE(1404), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56721] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, - anon_sym_LF, - ACTIONS(3357), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3241), 2, + ACTIONS(3355), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3353), 2, + ACTIONS(3364), 1, + anon_sym_LF, + STATE(1275), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50619] = 5, + [56772] = 13, ACTIONS(3), 1, - sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2532), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3413), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2530), 12, - anon_sym___extension__, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 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(2795), 1, sym_identifier, - [50650] = 14, - ACTIONS(3), 1, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(729), 1, + sym__old_style_function_declarator, + STATE(1276), 1, sym_comment, - ACTIONS(3187), 1, + STATE(1356), 1, + sym_ms_call_modifier, + STATE(1417), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56821] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3279), 1, + anon_sym_LF, + STATE(1277), 1, + sym_comment, + ACTIONS(3281), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3189), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, anon_sym_PIPE, - ACTIONS(3195), 1, anon_sym_CARET, - ACTIONS(3197), 1, anon_sym_AMP, - ACTIONS(3416), 1, - anon_sym_RPAREN, - ACTIONS(3183), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3199), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50699] = 12, - ACTIONS(3211), 1, + [56854] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(707), 1, + sym__old_style_function_declarator, + STATE(1278), 1, sym_comment, - ACTIONS(3357), 1, + STATE(1360), 1, + sym_ms_call_modifier, + STATE(1402), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56903] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3378), 1, + ACTIONS(3355), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3366), 1, + anon_sym_LF, + STATE(1279), 1, + sym_comment, + ACTIONS(3323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3337), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [56954] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_LF, - ACTIONS(3353), 2, + STATE(1280), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50744] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, + [57005] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3378), 1, + ACTIONS(3355), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3370), 1, + anon_sym_LF, + STATE(1281), 1, + sym_comment, + ACTIONS(3323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3337), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [57056] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3420), 1, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3372), 1, anon_sym_LF, - ACTIONS(3353), 2, + STATE(1282), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50789] = 9, - ACTIONS(3211), 1, - sym_comment, + [57107] = 11, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, anon_sym_LF, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3353), 2, + STATE(1283), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 4, + ACTIONS(3247), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50828] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2536), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3422), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2534), 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, - [50859] = 3, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3287), 1, + [57152] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3374), 1, anon_sym_LF, - ACTIONS(3289), 18, + STATE(1284), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(3337), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [57203] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, anon_sym_AMP_AMP, + ACTIONS(3329), 1, anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, + ACTIONS(3333), 1, anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3376), 1, + anon_sym_LF, + STATE(1285), 1, + sym_comment, + ACTIONS(3323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [57254] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3378), 1, + anon_sym_LF, + STATE(1286), 1, + sym_comment, + ACTIONS(3323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50886] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1253), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2620), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3425), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2618), 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, - [50917] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2627), 2, - anon_sym_LPAREN2, + ACTIONS(3325), 3, anon_sym_STAR, - ACTIONS(3428), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2624), 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, - [50948] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3337), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [57305] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3378), 1, + ACTIONS(3355), 1, anon_sym_PIPE_PIPE, ACTIONS(3380), 1, - anon_sym_AMP_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE, - ACTIONS(3432), 1, anon_sym_LF, - ACTIONS(3353), 2, + STATE(1287), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50993] = 5, - ACTIONS(3), 1, + [57356] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3382), 1, + anon_sym_LF, + STATE(1288), 1, sym_comment, - STATE(1258), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2548), 2, - anon_sym_LPAREN2, + ACTIONS(3323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, anon_sym_STAR, - ACTIONS(3434), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2546), 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, - [51024] = 8, - ACTIONS(3211), 1, - sym_comment, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3337), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [57407] = 10, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, anon_sym_LF, - ACTIONS(3353), 2, + STATE(1289), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3337), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3241), 5, + ACTIONS(3247), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [51061] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1239), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2558), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3437), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2556), 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, - [51092] = 3, - ACTIONS(3211), 1, - sym_comment, + [57450] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, anon_sym_LF, - ACTIONS(3241), 18, + STATE(1290), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3247), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108605,45 +114983,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51119] = 12, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(3357), 1, + [57487] = 14, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_AMP_AMP, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3333), 1, anon_sym_AMP, - ACTIONS(3378), 1, + ACTIONS(3355), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3384), 1, + anon_sym_LF, + STATE(1291), 1, + sym_comment, + ACTIONS(3323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3337), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [57538] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3195), 1, + anon_sym_SLASH, + ACTIONS(3197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3199), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3201), 1, anon_sym_PIPE, - ACTIONS(3440), 1, + ACTIONS(3203), 1, + anon_sym_CARET, + ACTIONS(3205), 1, + anon_sym_AMP, + ACTIONS(3386), 1, + anon_sym_RPAREN, + STATE(1292), 1, + sym_comment, + ACTIONS(3191), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3193), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3211), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57593] = 9, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, anon_sym_LF, - ACTIONS(3353), 2, + STATE(1293), 1, + sym_comment, + ACTIONS(3323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3337), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3247), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + [57634] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(703), 1, + sym__old_style_function_declarator, + STATE(1294), 1, + sym_comment, + STATE(1361), 1, + sym_ms_call_modifier, + STATE(1410), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57683] = 8, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3245), 1, + anon_sym_LF, + STATE(1295), 1, + sym_comment, + ACTIONS(3323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3325), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3247), 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, - [51164] = 3, - ACTIONS(2964), 1, + [57722] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3249), 1, anon_sym_LF, - ACTIONS(3211), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2962), 18, + ACTIONS(3251), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -108662,696 +115186,727 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51191] = 10, + [57755] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1332), 1, + STATE(1297), 1, + sym_comment, + STATE(1362), 1, sym_ms_call_modifier, - STATE(1421), 1, + STATE(1450), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51231] = 10, + [57801] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1341), 1, + STATE(1298), 1, + sym_comment, + STATE(1361), 1, sym_ms_call_modifier, - STATE(1405), 1, + STATE(1432), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51271] = 10, + [57847] = 14, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1755), 1, + anon_sym_LPAREN2, + ACTIONS(1757), 1, + anon_sym_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2803), 1, + anon_sym_LBRACK, + STATE(1299), 1, sym_comment, - ACTIONS(1753), 1, + STATE(1452), 1, + sym__declarator, + STATE(1532), 1, + sym_parameter_list, + STATE(1564), 1, + sym__abstract_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1527), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [57897] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1347), 1, + STATE(1300), 1, + sym_comment, + STATE(1356), 1, sym_ms_call_modifier, - STATE(1401), 1, + STATE(1426), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51311] = 10, + [57943] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1353), 1, + STATE(1301), 1, + sym_comment, + STATE(1360), 1, sym_ms_call_modifier, - STATE(1411), 1, + STATE(1442), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51351] = 10, + [57989] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1327), 1, + STATE(1302), 1, + sym_comment, + STATE(1359), 1, sym_ms_call_modifier, - STATE(1397), 1, + STATE(1444), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51391] = 10, + [58035] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(3000), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(3002), 1, anon_sym_STAR, - STATE(1333), 1, + STATE(1303), 1, + sym_comment, + STATE(1368), 1, sym_ms_call_modifier, - STATE(1427), 1, + STATE(1465), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1969), 1, sym_ms_based_modifier, - STATE(1399), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(39), 6, + ACTIONS(41), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51431] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2753), 1, - anon_sym_LBRACK, - STATE(1425), 1, - sym__declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1534), 1, - sym__abstract_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1496), 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, - [51475] = 11, + [58081] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1304), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1542), 1, + STATE(1535), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51516] = 11, + [58128] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1305), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1531), 1, + STATE(1545), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51557] = 11, + [58175] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1306), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1547), 1, + STATE(1588), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51598] = 11, + [58222] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1307), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1550), 1, + STATE(1553), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51639] = 11, + [58269] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1308), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1508), 1, + STATE(1551), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51680] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_const, - ACTIONS(2725), 1, - anon_sym_LBRACE, - ACTIONS(3442), 1, - anon_sym___attribute__, - ACTIONS(3444), 1, - anon_sym_COLON, - STATE(808), 1, - sym_attribute_specifier, - STATE(1119), 1, - sym_enumerator_list, - ACTIONS(2720), 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, - [51715] = 11, + [58316] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1309), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1555), 1, + STATE(1587), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51756] = 11, + [58363] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1310), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1510), 1, + STATE(1560), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51797] = 11, + [58410] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1311), 1, + sym_comment, + STATE(1399), 1, sym__type_declarator, - STATE(1505), 1, + STATE(1566), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51838] = 11, + [58457] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2736), 1, + anon_sym_const, + ACTIONS(2743), 1, + anon_sym_LBRACE, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(3390), 1, + anon_sym_COLON, + STATE(838), 1, + sym_attribute_specifier, + STATE(1145), 1, + sym_enumerator_list, + STATE(1312), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2738), 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, + [58498] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3393), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3397), 1, anon_sym_LBRACK, - STATE(1291), 1, + STATE(1313), 1, + sym_comment, + STATE(1318), 1, sym_gnu_asm_expression, - STATE(1340), 1, - sym_attribute_specifier, - STATE(1424), 1, - aux_sym_type_definition_repeat1, - ACTIONS(89), 2, + STATE(1320), 1, + aux_sym_function_declarator_repeat1, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3449), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1297), 2, + STATE(1353), 2, sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(3451), 4, + sym_attribute_specifier, + ACTIONS(3395), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51878] = 8, + [58540] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3393), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3397), 1, anon_sym_LBRACK, - STATE(1296), 1, + STATE(1314), 1, + sym_comment, + STATE(1320), 1, + aux_sym_function_declarator_repeat1, + STATE(1327), 1, sym_gnu_asm_expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1297), 3, + STATE(1353), 1, sym_preproc_call_expression, + STATE(1369), 1, sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3451), 7, + STATE(1462), 1, + aux_sym_type_definition_repeat1, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3399), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + ACTIONS(3395), 4, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51912] = 10, + [58588] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1385), 1, + STATE(1315), 1, + sym_comment, + STATE(1413), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51950] = 10, + [58632] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2849), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2851), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2853), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2857), 1, sym_primitive_type, - STATE(1431), 1, + STATE(1316), 1, + sym_comment, + STATE(1466), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1896), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2855), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1464), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51988] = 12, + [58676] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, - sym_identifier, - ACTIONS(2954), 1, - anon_sym_LPAREN2, - ACTIONS(2956), 1, - anon_sym_STAR, - ACTIONS(3455), 1, - anon_sym_SEMI, - STATE(1323), 1, - sym__field_declarator, - STATE(1613), 1, - sym__field_declaration_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - STATE(2001), 1, - sym_attribute_specifier, - STATE(1399), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52029] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + ACTIONS(3393), 1, sym_identifier, - ACTIONS(3459), 1, - aux_sym_preproc_if_token2, - ACTIONS(3461), 1, - aux_sym_preproc_else_token1, - ACTIONS(3463), 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(1420), 1, - sym_enumerator, - ACTIONS(3465), 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, - [52068] = 10, - ACTIONS(3), 1, + STATE(1317), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3447), 1, - sym_identifier, - ACTIONS(3471), 1, - anon_sym_LBRACK, - STATE(1340), 1, + STATE(1324), 1, + aux_sym_function_declarator_repeat1, + STATE(1353), 2, + sym_preproc_call_expression, sym_attribute_specifier, - STATE(1436), 1, - aux_sym_type_definition_repeat1, - ACTIONS(3467), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3473), 2, + ACTIONS(3403), 3, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1293), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(3469), 4, + ACTIONS(3401), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52105] = 6, + [58713] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(3483), 3, + ACTIONS(3393), 1, + sym_identifier, + STATE(1317), 1, + aux_sym_function_declarator_repeat1, + STATE(1318), 1, + sym_comment, + STATE(1353), 2, + sym_preproc_call_expression, + sym_attribute_specifier, + ACTIONS(3407), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1292), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3478), 7, + ACTIONS(3405), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109359,22 +115914,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52134] = 6, + [58750] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(3411), 1, + aux_sym_preproc_if_token2, + ACTIONS(3413), 1, + aux_sym_preproc_else_token1, + ACTIONS(3415), 1, + aux_sym_preproc_elif_token1, + STATE(1319), 1, sym_comment, - ACTIONS(33), 1, + STATE(1354), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1365), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1461), 1, + sym_enumerator, + ACTIONS(3417), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1970), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1971), 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, + [58795] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3393), 1, sym_identifier, - ACTIONS(3487), 3, + STATE(1320), 1, + sym_comment, + STATE(1324), 1, + aux_sym_function_declarator_repeat1, + STATE(1353), 2, + sym_preproc_call_expression, + sym_attribute_specifier, + ACTIONS(3407), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1292), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3485), 7, + ACTIONS(3405), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109382,102 +115974,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52163] = 11, + [58832] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, sym_identifier, - ACTIONS(3461), 1, + ACTIONS(3413), 1, aux_sym_preproc_else_token1, - ACTIONS(3463), 1, + ACTIONS(3415), 1, aux_sym_preproc_elif_token1, - ACTIONS(3489), 1, + ACTIONS(3419), 1, aux_sym_preproc_if_token2, - STATE(1336), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1338), 1, + STATE(1321), 1, + sym_comment, + STATE(1370), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1420), 1, + STATE(1371), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1461), 1, sym_enumerator, - ACTIONS(3465), 2, + ACTIONS(3417), 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, - STATE(1947), 3, + STATE(1819), 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, - [52202] = 12, + STATE(1829), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [58877] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(1753), 1, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(3000), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(3002), 1, anon_sym_STAR, - ACTIONS(3491), 1, + ACTIONS(3421), 1, anon_sym_SEMI, - STATE(1323), 1, + STATE(1322), 1, + sym_comment, + STATE(1352), 1, sym__field_declarator, - STATE(1678), 1, + STATE(1648), 1, sym__field_declaration_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - STATE(1850), 1, + STATE(1869), 1, sym_attribute_specifier, - STATE(1399), 5, + STATE(1969), 1, + sym_ms_based_modifier, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52243] = 6, + [58924] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(3413), 1, + aux_sym_preproc_else_token1, + ACTIONS(3415), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3423), 1, + aux_sym_preproc_if_token2, + STATE(1323), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3447), 1, + STATE(1372), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1374), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1461), 1, + sym_enumerator, + ACTIONS(3417), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1839), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1842), 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, + [58969] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3425), 1, sym_identifier, - ACTIONS(3471), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1293), 3, + ACTIONS(3430), 1, + anon_sym___attribute__, + STATE(1324), 2, + sym_comment, + aux_sym_function_declarator_repeat1, + STATE(1353), 2, sym_preproc_call_expression, sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3469), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [52272] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3447), 1, - sym_identifier, - ACTIONS(3471), 3, + ACTIONS(3433), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1292), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3469), 7, + ACTIONS(3428), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109485,102 +116098,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52301] = 11, + [59004] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, sym_identifier, - ACTIONS(3461), 1, + ACTIONS(3413), 1, aux_sym_preproc_else_token1, - ACTIONS(3463), 1, + ACTIONS(3415), 1, aux_sym_preproc_elif_token1, - ACTIONS(3493), 1, + ACTIONS(3435), 1, aux_sym_preproc_if_token2, - STATE(1339), 1, + STATE(1325), 1, + sym_comment, + STATE(1373), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1346), 1, + STATE(1375), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1420), 1, + STATE(1461), 1, sym_enumerator, - ACTIONS(3465), 2, + ACTIONS(3417), 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, + STATE(1812), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [52340] = 12, + STATE(1938), 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, + [59049] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, anon_sym___attribute__, - ACTIONS(1753), 1, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(3000), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(3002), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(3437), 1, anon_sym_SEMI, - STATE(1323), 1, + STATE(1326), 1, + sym_comment, + STATE(1352), 1, sym__field_declarator, - STATE(1664), 1, + STATE(1722), 1, sym__field_declaration_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - STATE(1904), 1, + STATE(1892), 1, sym_attribute_specifier, - STATE(1399), 5, + STATE(1969), 1, + sym_ms_based_modifier, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52381] = 11, + [59096] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(3393), 1, sym_identifier, - ACTIONS(3461), 1, - aux_sym_preproc_else_token1, - ACTIONS(3463), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3497), 1, - aux_sym_preproc_if_token2, - STATE(1325), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1349), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1420), 1, - sym_enumerator, - ACTIONS(3465), 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, - [52420] = 5, + ACTIONS(3407), 1, + anon_sym_LBRACK, + STATE(1317), 1, + aux_sym_function_declarator_repeat1, + STATE(1327), 1, + sym_comment, + STATE(1353), 1, + sym_preproc_call_expression, + STATE(1369), 1, + sym_attribute_specifier, + STATE(1460), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3439), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3441), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3405), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [59141] = 14, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2998), 1, + sym_identifier, + ACTIONS(3000), 1, + anon_sym_LPAREN2, + ACTIONS(3002), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_SEMI, + STATE(1328), 1, sym_comment, - ACTIONS(3501), 1, + STATE(1352), 1, + sym__field_declarator, + STATE(1630), 1, + sym__field_declaration_declarator, + STATE(1968), 1, + sym_attribute_specifier, + STATE(1969), 1, + sym_ms_based_modifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [59188] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3447), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3450), 1, anon_sym_LBRACK, - STATE(1301), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1329), 2, + sym_comment, aux_sym_attributed_declarator_repeat1, - ACTIONS(3499), 10, + ACTIONS(3445), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109591,39 +116253,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [52446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 5, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2797), 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, - [52467] = 7, + [59220] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1330), 1, + sym_comment, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3506), 7, + ACTIONS(3452), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -109631,362 +116280,408 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [52496] = 11, + [59257] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1331), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1483), 1, sym__declarator, - STATE(1459), 1, + STATE(1524), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52533] = 11, + [59300] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1332), 1, sym_comment, - ACTIONS(1753), 1, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3458), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [59337] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1333), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1483), 1, sym__declarator, - STATE(1461), 1, + STATE(1503), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52570] = 11, + [59380] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1334), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1483), 1, sym__declarator, - STATE(1494), 1, + STATE(1510), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52607] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, - anon_sym_LBRACK, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3512), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [52636] = 11, + [59423] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1335), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1446), 1, sym__declarator, - STATE(1470), 1, + STATE(1479), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52673] = 11, + [59466] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1336), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1406), 1, + STATE(1441), 1, sym__declarator, - STATE(1460), 1, + STATE(1510), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52710] = 9, + [59509] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(19), 1, sym_preproc_directive, - ACTIONS(3514), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3516), 1, + ACTIONS(3462), 1, aux_sym_preproc_if_token1, - ACTIONS(3520), 1, + ACTIONS(3466), 1, anon_sym_RBRACE, - ACTIONS(3518), 2, + STATE(1337), 1, + sym_comment, + STATE(1350), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3464), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1726), 2, + STATE(1472), 2, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + STATE(1805), 2, sym_preproc_call, sym_enumerator, - STATE(1905), 2, + STATE(1825), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1328), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [52743] = 11, + [59550] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1338), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1414), 1, + STATE(1431), 1, sym__declarator, - STATE(1468), 1, + STATE(1499), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52780] = 7, + [59593] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1339), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3468), 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(3522), 7, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3470), 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__, - [52809] = 11, + anon_sym_COLON, + [59620] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1340), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(2822), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1451), 1, - sym__declarator, - STATE(1460), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1374), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [52846] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2815), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - sym_identifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1451), 1, - sym__declarator, - STATE(1468), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1374), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [52883] = 11, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [59647] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1341), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1417), 1, + STATE(1483), 1, sym__declarator, - STATE(1459), 1, + STATE(1511), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52920] = 5, + [59690] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1342), 1, sym_comment, - ACTIONS(3159), 1, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3472), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [59727] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3183), 1, anon_sym_LPAREN2, - STATE(1012), 1, + STATE(1034), 1, sym_preproc_argument_list, - ACTIONS(3524), 5, + STATE(1343), 1, + sym_comment, + ACTIONS(3474), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3526), 6, + ACTIONS(3476), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52945] = 9, + [59758] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1344), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3514), 1, - sym_identifier, - ACTIONS(3516), 1, - aux_sym_preproc_if_token1, - ACTIONS(3528), 1, - anon_sym_RBRACE, - ACTIONS(3518), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1739), 2, - sym_preproc_call, - sym_enumerator, - STATE(1928), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1310), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [52978] = 3, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3478), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [59795] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1345), 1, sym_comment, - ACTIONS(3530), 5, + ACTIONS(2793), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3532), 8, + ACTIONS(2786), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109995,758 +116690,1005 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [52999] = 11, + [59822] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1346), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1402), 1, + STATE(1423), 1, sym__declarator, - STATE(1470), 1, + STATE(1511), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53036] = 11, + [59865] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + ACTIONS(3177), 1, + sym_identifier, + STATE(1347), 1, sym_comment, - ACTIONS(1753), 1, + STATE(1384), 1, + sym_function_declarator, + STATE(1479), 1, + sym__declaration_declarator, + STATE(1483), 1, + sym__declarator, + STATE(1570), 1, + sym__function_declaration_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1407), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [59908] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3177), 1, sym_identifier, - STATE(1354), 1, + STATE(1348), 1, + sym_comment, + STATE(1384), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1483), 1, sym__declarator, - STATE(1477), 1, + STATE(1499), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1570), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1407), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53073] = 7, + [59951] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + ACTIONS(3177), 1, + sym_identifier, + STATE(1349), 1, sym_comment, - ACTIONS(35), 1, + STATE(1384), 1, + sym_function_declarator, + STATE(1483), 1, + sym__declarator, + STATE(1496), 1, + sym__declaration_declarator, + STATE(1570), 1, + sym__function_declaration_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1407), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [59994] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(19), 1, + sym_preproc_directive, + ACTIONS(3460), 1, + sym_identifier, + ACTIONS(3462), 1, + aux_sym_preproc_if_token1, + ACTIONS(3480), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_comment, + STATE(1358), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3464), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1472), 2, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + STATE(1764), 2, + sym_preproc_call, + sym_enumerator, + STATE(1946), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + [60035] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3484), 1, anon_sym_LBRACK, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1329), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3534), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53102] = 3, - ACTIONS(3), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2792), 5, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2785), 8, + ACTIONS(3482), 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, - [53123] = 11, + anon_sym_asm, + anon_sym___asm__, + [60067] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3536), 1, + ACTIONS(3486), 1, anon_sym_COMMA, - ACTIONS(3540), 1, + ACTIONS(3490), 1, anon_sym_LBRACK, - ACTIONS(3542), 1, + ACTIONS(3492), 1, anon_sym_COLON, - STATE(1393), 1, + STATE(672), 1, + sym_attribute_declaration, + STATE(1352), 1, + sym_comment, + STATE(1395), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1436), 1, sym_parameter_list, - STATE(1536), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1537), 1, + STATE(1534), 1, sym_bitfield_clause, - ACTIONS(3538), 2, + STATE(1572), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3488), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [53159] = 5, + [60111] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1353), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3546), 1, + ACTIONS(3474), 5, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(1301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3544), 8, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3476), 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_asm, - anon_sym___asm__, - [53183] = 8, + [60137] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3548), 1, + ACTIONS(3494), 1, aux_sym_preproc_if_token2, - ACTIONS(3550), 1, + ACTIONS(3496), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3498), 1, aux_sym_preproc_elif_token1, - ACTIONS(3554), 2, + STATE(1354), 1, + sym_comment, + STATE(1447), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1862), 1, + sym_enumerator, + ACTIONS(3500), 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, - [53212] = 8, + STATE(1998), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [60174] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3502), 1, + aux_sym_preproc_if_token2, + ACTIONS(3504), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3506), 1, aux_sym_preproc_elif_token1, - ACTIONS(3556), 1, - aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + STATE(1355), 1, + sym_comment, + STATE(1365), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1497), 1, + sym_enumerator, + ACTIONS(3508), 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, + STATE(1971), 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, - [53241] = 8, + [60211] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1407), 1, + STATE(1356), 1, + sym_comment, + STATE(1443), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53270] = 8, + [60246] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1357), 1, sym_comment, - ACTIONS(3558), 1, + STATE(1395), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1436), 1, + sym_parameter_list, + ACTIONS(3510), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [60281] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3512), 1, sym_identifier, - ACTIONS(3561), 1, + ACTIONS(3515), 1, aux_sym_preproc_if_token1, - ACTIONS(3567), 1, + ACTIONS(3521), 1, sym_preproc_directive, - ACTIONS(3570), 1, + ACTIONS(3524), 1, anon_sym_RBRACE, - ACTIONS(3564), 2, + ACTIONS(3518), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1889), 2, - sym_preproc_call, - sym_enumerator, - STATE(1328), 3, + STATE(1358), 2, + sym_comment, + aux_sym_enumerator_list_repeat1, + STATE(1472), 2, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [53299] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 1, - aux_sym_preproc_if_token2, - ACTIONS(3514), 1, - sym_identifier, - ACTIONS(3572), 1, - aux_sym_preproc_else_token1, - ACTIONS(3574), 1, - aux_sym_preproc_elif_token1, - STATE(1349), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1868), 2, + sym_preproc_call, sym_enumerator, - ACTIONS(3576), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1919), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [53330] = 8, + [60316] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(3550), 1, - aux_sym_preproc_else_token1, - ACTIONS(3552), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3578), 1, - aux_sym_preproc_if_token2, - ACTIONS(3554), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1325), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - 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, - [53359] = 9, - ACTIONS(3), 1, + ACTIONS(2968), 1, + anon_sym_LPAREN2, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(1359), 1, sym_comment, - ACTIONS(3514), 1, - sym_identifier, - ACTIONS(3572), 1, - aux_sym_preproc_else_token1, - ACTIONS(3574), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3580), 1, - aux_sym_preproc_if_token2, - STATE(1336), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - ACTIONS(3576), 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, - [53390] = 8, + STATE(1430), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [60351] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1425), 1, + STATE(1360), 1, + sym_comment, + STATE(1439), 1, sym__declarator, - STATE(1803), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1384), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53419] = 8, + [60386] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2970), 1, anon_sym_STAR, - STATE(1429), 1, - sym__field_declarator, - STATE(1817), 1, + STATE(1361), 1, + sym_comment, + STATE(1424), 1, + sym__declarator, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1399), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [53448] = 7, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [60421] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2968), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, - anon_sym_LBRACK, - STATE(1393), 1, - sym_parameter_list, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3582), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53475] = 7, + ACTIONS(2970), 1, + anon_sym_STAR, + STATE(1362), 1, + sym_comment, + STATE(1452), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1384), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [60456] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3526), 1, + sym_identifier, + STATE(693), 1, + sym_string_literal, + STATE(733), 1, + sym_concatenated_string, + STATE(1363), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3540), 1, - anon_sym_LBRACK, - STATE(1393), 1, - sym_parameter_list, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3584), 5, - anon_sym_COMMA, + STATE(1583), 1, + sym__string, + ACTIONS(3528), 2, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - [53502] = 9, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [60489] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3514), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3411), 1, + aux_sym_preproc_if_token2, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3496), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3498), 1, aux_sym_preproc_elif_token1, - ACTIONS(3586), 1, - aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1354), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1364), 1, + sym_comment, + STATE(1862), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3500), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1939), 3, + STATE(1970), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53533] = 8, + [60526] = 11, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(3504), 1, + aux_sym_preproc_else_token1, + ACTIONS(3506), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3530), 1, + aux_sym_preproc_if_token2, + STATE(1365), 1, sym_comment, - ACTIONS(1753), 1, + STATE(1428), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1497), 1, + sym_enumerator, + ACTIONS(3508), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2001), 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, + [60563] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(3000), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(3002), 1, anon_sym_STAR, - STATE(1342), 1, + STATE(1366), 1, + sym_comment, + STATE(1377), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1969), 1, + sym_ms_based_modifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [60598] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1367), 1, + sym_comment, + STATE(1395), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1436), 1, + sym_parameter_list, + ACTIONS(3532), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [60633] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1759), 1, + anon_sym___based, + ACTIONS(2998), 1, + sym_identifier, + ACTIONS(3000), 1, + anon_sym_LPAREN2, + ACTIONS(3002), 1, + anon_sym_STAR, + STATE(1368), 1, + sym_comment, + STATE(1468), 1, + sym__field_declarator, + STATE(1969), 1, sym_ms_based_modifier, - STATE(1399), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53562] = 8, + [60668] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3536), 1, + anon_sym___attribute__, + STATE(1369), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3474), 2, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(3534), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3539), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3476), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [60699] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3504), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3506), 1, aux_sym_preproc_elif_token1, - ACTIONS(3588), 1, + ACTIONS(3541), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + STATE(1370), 1, + sym_comment, + STATE(1428), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1497), 1, + sym_enumerator, + ACTIONS(3508), 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(1932), 3, + STATE(1880), 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, - [53591] = 9, + [60736] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3514), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3496), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3498), 1, aux_sym_preproc_elif_token1, - ACTIONS(3590), 1, + ACTIONS(3543), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1371), 1, + sym_comment, + STATE(1447), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1862), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3500), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1962), 3, + STATE(1858), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym___attribute__, - ACTIONS(3524), 2, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(3592), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3597), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3526), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53647] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(1396), 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, - [53676] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_COLON, - STATE(1393), 1, - sym_parameter_list, - STATE(1641), 1, - sym_bitfield_clause, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3599), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [53707] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - sym_identifier, - STATE(683), 1, - sym_string_literal, - ACTIONS(3603), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1509), 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, - [53732] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3540), 1, - anon_sym_LBRACK, - STATE(1393), 1, - sym_parameter_list, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3605), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53759] = 9, + [60773] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - aux_sym_preproc_if_token2, - ACTIONS(3514), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3496), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3498), 1, aux_sym_preproc_elif_token1, - STATE(1351), 1, + ACTIONS(3545), 1, + aux_sym_preproc_if_token2, + STATE(1372), 1, + sym_comment, + STATE(1447), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1862), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3500), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1776), 3, + STATE(1932), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53790] = 8, + [60810] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3496), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3498), 1, aux_sym_preproc_elif_token1, - ACTIONS(3607), 1, + ACTIONS(3547), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + STATE(1373), 1, + sym_comment, + STATE(1447), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1862), 1, + sym_enumerator, + ACTIONS(3500), 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, - [53819] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(1404), 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, - [53848] = 8, + STATE(1972), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [60847] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3504), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3506), 1, aux_sym_preproc_elif_token1, - ACTIONS(3609), 1, + ACTIONS(3549), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + STATE(1374), 1, + sym_comment, + STATE(1428), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1497), 1, + sym_enumerator, + ACTIONS(3508), 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, + STATE(1978), 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, - [53877] = 9, + [60884] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3514), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3504), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3506), 1, aux_sym_preproc_elif_token1, - ACTIONS(3611), 1, + ACTIONS(3551), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1375), 1, + sym_comment, + STATE(1428), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1497), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3508), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1779), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [53908] = 7, + STATE(1974), 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, + [60921] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1376), 1, sym_comment, - ACTIONS(35), 1, + STATE(1395), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1436), 1, + sym_parameter_list, + ACTIONS(3553), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [60956] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, + ACTIONS(3490), 1, anon_sym_LBRACK, - STATE(1393), 1, + ACTIONS(3492), 1, + anon_sym_COLON, + STATE(672), 1, + sym_attribute_declaration, + STATE(1377), 1, + sym_comment, + STATE(1395), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1436), 1, sym_parameter_list, - STATE(1368), 2, + STATE(1638), 1, + sym_bitfield_clause, + ACTIONS(3555), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [60995] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_LBRACK, + STATE(672), 1, sym_attribute_declaration, + STATE(1378), 1, + sym_comment, + STATE(1395), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3613), 5, + STATE(1436), 1, + sym_parameter_list, + ACTIONS(3557), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53935] = 9, + [61030] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3514), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3496), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3498), 1, aux_sym_preproc_elif_token1, - ACTIONS(3615), 1, + ACTIONS(3559), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1372), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1379), 1, + sym_comment, + STATE(1862), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3500), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1864), 3, + STATE(1839), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53966] = 9, + [61067] = 11, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(3504), 1, + aux_sym_preproc_else_token1, + ACTIONS(3506), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3561), 1, + aux_sym_preproc_if_token2, + STATE(1375), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1380), 1, sym_comment, - ACTIONS(3514), 1, + STATE(1497), 1, + sym_enumerator, + ACTIONS(3508), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1938), 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, + [61104] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3496), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3498), 1, aux_sym_preproc_elif_token1, - ACTIONS(3617), 1, + ACTIONS(3563), 1, aux_sym_preproc_if_token2, - STATE(1339), 1, + STATE(1371), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1381), 1, + sym_comment, + STATE(1862), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3500), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1900), 3, + STATE(1829), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53997] = 8, + [61141] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3435), 1, + aux_sym_preproc_if_token2, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(1403), 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, - [54026] = 3, + ACTIONS(3496), 1, + aux_sym_preproc_else_token1, + ACTIONS(3498), 1, + aux_sym_preproc_elif_token1, + STATE(1373), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1382), 1, + sym_comment, + STATE(1862), 1, + sym_enumerator, + ACTIONS(3500), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1812), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [61178] = 13, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, + anon_sym_EQ, + STATE(137), 1, + sym_compound_statement, + STATE(672), 1, + sym_attribute_declaration, + STATE(996), 1, + sym__old_style_parameter_list, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1383), 1, sym_comment, - ACTIONS(3621), 1, + [61218] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3571), 1, anon_sym_LBRACK, - ACTIONS(3619), 9, + STATE(1384), 1, + sym_comment, + ACTIONS(3569), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110756,31 +117698,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54044] = 7, + [61242] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3575), 1, + anon_sym_LBRACK, + STATE(1385), 1, sym_comment, - ACTIONS(35), 1, + STATE(1533), 1, + sym_gnu_asm_input_operand, + STATE(1903), 1, + sym_string_literal, + ACTIONS(3573), 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, + [61272] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3579), 1, anon_sym_LBRACK, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1386), 1, + sym_comment, + STATE(1418), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3623), 4, + STATE(1454), 1, + sym_parameter_list, + ACTIONS(3577), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [54070] = 3, + [61306] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3583), 1, anon_sym_LBRACK, - ACTIONS(3627), 9, + STATE(1387), 1, + sym_comment, + ACTIONS(3581), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110790,137 +117763,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54088] = 10, + [61330] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3587), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, - anon_sym_LPAREN2, - ACTIONS(3633), 1, - anon_sym_EQ, - STATE(149), 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, - [54120] = 10, - ACTIONS(3), 1, + STATE(1388), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3585), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK, - ACTIONS(3631), 1, - anon_sym_LPAREN2, - ACTIONS(3633), 1, anon_sym_EQ, - STATE(401), 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, - [54152] = 9, + anon_sym_asm, + anon_sym___asm__, + [61354] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3591), 1, anon_sym_LBRACK, - ACTIONS(3635), 1, - anon_sym_COMMA, - STATE(1428), 1, - sym_parameter_list, - STATE(1543), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3637), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1386), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54182] = 7, - ACTIONS(3), 1, + STATE(1389), 1, sym_comment, - ACTIONS(35), 1, + STATE(1597), 1, + sym_gnu_asm_output_operand, + STATE(2047), 1, + sym_string_literal, + ACTIONS(3589), 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, + [61384] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3579), 1, anon_sym_LBRACK, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1390), 1, + sym_comment, + STATE(1418), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3639), 4, + STATE(1454), 1, + sym_parameter_list, + ACTIONS(3593), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [54208] = 7, + [61418] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3597), 1, anon_sym_LBRACK, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3641), 4, + STATE(1391), 1, + sym_comment, + ACTIONS(3595), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [54234] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK, - ACTIONS(3631), 1, - anon_sym_LPAREN2, - ACTIONS(3633), 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, - [54266] = 3, + anon_sym_asm, + anon_sym___asm__, + [61442] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3601), 1, anon_sym_LBRACK, - ACTIONS(3643), 9, + STATE(1392), 1, + sym_comment, + ACTIONS(3599), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110930,12 +117866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54284] = 3, + [61466] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3605), 1, anon_sym_LBRACK, - ACTIONS(3647), 9, + STATE(1393), 1, + sym_comment, + ACTIONS(3603), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110945,136 +117885,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54302] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - anon_sym_LBRACK, - STATE(1521), 1, - sym_gnu_asm_output_operand, - STATE(1826), 1, - sym_string_literal, - ACTIONS(3651), 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, - [54326] = 7, + [61490] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, + anon_sym_EQ, + STATE(323), 1, + sym_compound_statement, + STATE(672), 1, sym_attribute_declaration, + STATE(996), 1, + sym__old_style_parameter_list, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3655), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [54352] = 3, - ACTIONS(3), 1, + STATE(1394), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_LBRACK, - ACTIONS(3657), 9, - 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__, - [54370] = 5, + [61530] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3663), 1, + ACTIONS(3609), 1, anon_sym_LBRACK, - STATE(1301), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1329), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3661), 6, + STATE(1395), 1, + sym_comment, + ACTIONS(3607), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [54392] = 10, + [61560] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(503), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3633), 1, + ACTIONS(3567), 1, anon_sym_EQ, - STATE(336), 1, + STATE(407), 1, sym_compound_statement, - STATE(989), 1, + STATE(672), 1, + sym_attribute_declaration, + STATE(996), 1, sym__old_style_parameter_list, - STATE(1285), 1, + STATE(1314), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54424] = 6, - ACTIONS(3), 1, + STATE(1396), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_LBRACK, - STATE(1529), 1, - sym_gnu_asm_input_operand, - STATE(1990), 1, - sym_string_literal, - ACTIONS(3665), 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, - [54448] = 3, + [61600] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3579), 1, anon_sym_LBRACK, - ACTIONS(3669), 9, + STATE(672), 1, + sym_attribute_declaration, + STATE(1397), 1, + sym_comment, + STATE(1418), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1454), 1, + sym_parameter_list, + ACTIONS(3611), 4, 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__, - [54466] = 3, + anon_sym___attribute__, + [61634] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3615), 1, anon_sym_LBRACK, - ACTIONS(3673), 9, + STATE(1398), 1, + sym_comment, + ACTIONS(3613), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111084,351 +118004,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54484] = 9, + [61658] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3579), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_EQ, - STATE(419), 1, - sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + ACTIONS(3617), 1, + anon_sym_COMMA, + STATE(672), 1, sym_attribute_declaration, + STATE(1399), 1, + sym_comment, + STATE(1418), 1, aux_sym_attributed_declarator_repeat1, - [54513] = 4, + STATE(1454), 1, + sym_parameter_list, + STATE(1550), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(3619), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [61696] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3621), 1, - anon_sym_LBRACK, - ACTIONS(3619), 4, - anon_sym_LPAREN2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3677), 4, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3579), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1400), 1, + sym_comment, + STATE(1418), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1454), 1, + sym_parameter_list, + ACTIONS(3621), 4, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [54532] = 9, + anon_sym___attribute__, + [61730] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, anon_sym_EQ, - STATE(336), 1, + STATE(428), 1, sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(996), 1, + sym__old_style_parameter_list, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54561] = 9, - ACTIONS(3), 1, + STATE(1401), 1, sym_comment, - ACTIONS(35), 1, + [61770] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(503), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - STATE(326), 1, + STATE(384), 1, sym_compound_statement, - STATE(989), 1, + STATE(672), 1, + sym_attribute_declaration, + STATE(996), 1, sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1313), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54590] = 9, - ACTIONS(3), 1, + STATE(1402), 1, sym_comment, - ACTIONS(35), 1, + [61807] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(503), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, + ACTIONS(3567), 1, anon_sym_EQ, - STATE(401), 1, + STATE(407), 1, sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54619] = 9, - ACTIONS(3), 1, + STATE(1403), 1, sym_comment, - ACTIONS(35), 1, + [61844] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(423), 1, sym_compound_statement, - STATE(989), 1, + STATE(672), 1, + sym_attribute_declaration, + STATE(996), 1, sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1313), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54648] = 9, + STATE(1404), 1, + sym_comment, + [61881] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3623), 1, + sym_identifier, + ACTIONS(3627), 1, + sym_system_lib_string, + STATE(1405), 1, sym_comment, - ACTIONS(35), 1, + STATE(1951), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3625), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [61908] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, + ACTIONS(3567), 1, anon_sym_EQ, - STATE(149), 1, + STATE(137), 1, sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54677] = 5, - ACTIONS(3), 1, + STATE(1406), 1, sym_comment, - ACTIONS(3601), 1, - sym_identifier, - STATE(683), 1, - sym_string_literal, - STATE(1602), 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, - [54698] = 5, + [61945] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3571), 1, + anon_sym_LBRACK, + STATE(1407), 1, sym_comment, - ACTIONS(3679), 1, + ACTIONS(3569), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3629), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [61970] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3683), 1, + ACTIONS(3633), 1, sym_system_lib_string, + STATE(1408), 1, + sym_comment, STATE(1908), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3681), 5, + ACTIONS(3625), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54719] = 5, + [61997] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3526), 1, sym_identifier, - STATE(683), 1, + STATE(693), 1, sym_string_literal, - STATE(1649), 2, - sym__string, + STATE(733), 1, sym_concatenated_string, - ACTIONS(95), 5, + STATE(1409), 1, + sym_comment, + STATE(1612), 1, + sym__string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54740] = 9, + [62026] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - STATE(382), 1, + STATE(156), 1, sym_compound_statement, - STATE(989), 1, + STATE(672), 1, + sym_attribute_declaration, + STATE(996), 1, sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1313), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54769] = 5, + STATE(1410), 1, + sym_comment, + [62063] = 12, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3567), 1, + anon_sym_EQ, + STATE(323), 1, + sym_compound_statement, + STATE(672), 1, + sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1411), 1, sym_comment, - ACTIONS(3685), 1, + [62100] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3635), 1, sym_identifier, - ACTIONS(3687), 1, + ACTIONS(3637), 1, sym_system_lib_string, - STATE(1931), 2, + STATE(1412), 1, + sym_comment, + STATE(2024), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3681), 5, + ACTIONS(3625), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54790] = 7, + [62127] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3579), 1, anon_sym_LBRACK, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1413), 1, + sym_comment, + STATE(1418), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3689), 3, + STATE(1454), 1, + sym_parameter_list, + ACTIONS(3639), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [54815] = 5, + [62160] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3693), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1301), 2, + ACTIONS(3567), 1, + anon_sym_EQ, + STATE(428), 1, + sym_compound_statement, + STATE(672), 1, sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - ACTIONS(3691), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [54836] = 5, + STATE(1414), 1, + sym_comment, + [62197] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3641), 1, + sym_identifier, + ACTIONS(3643), 1, + sym_system_lib_string, + STATE(1415), 1, sym_comment, - ACTIONS(3601), 1, + STATE(1917), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3625), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [62224] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3526), 1, sym_identifier, - STATE(683), 1, + STATE(693), 1, sym_string_literal, - STATE(1582), 2, - sym__string, + STATE(733), 1, sym_concatenated_string, - ACTIONS(95), 5, + STATE(1416), 1, + sym_comment, + STATE(1625), 1, + sym__string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54857] = 9, + [62253] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(369), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - STATE(413), 1, + STATE(387), 1, sym_compound_statement, - STATE(989), 1, + STATE(672), 1, + sym_attribute_declaration, + STATE(996), 1, sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1313), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [54886] = 5, - ACTIONS(3), 1, + STATE(1417), 1, sym_comment, - ACTIONS(3695), 1, - sym_identifier, - ACTIONS(3697), 1, - sym_system_lib_string, - STATE(1875), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3681), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54907] = 7, + [62290] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3647), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1329), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1418), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(3645), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [62319] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1486), 1, + STATE(1419), 1, + sym_comment, + STATE(1532), 1, sym_parameter_list, - STATE(1534), 1, + STATE(1564), 1, sym__abstract_declarator, - STATE(1496), 4, + STATE(1527), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [54932] = 5, + [62350] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3526), 1, sym_identifier, - ACTIONS(3701), 1, - sym_system_lib_string, - STATE(1812), 2, - sym_preproc_call_expression, + STATE(693), 1, sym_string_literal, - ACTIONS(3681), 5, + STATE(733), 1, + sym_concatenated_string, + STATE(1420), 1, + sym_comment, + STATE(1703), 1, + sym__string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54953] = 3, + [62379] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3705), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3651), 1, anon_sym_LBRACK, - ACTIONS(3703), 7, + STATE(1421), 1, + sym_comment, + ACTIONS(3649), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111436,12 +118526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54969] = 3, + [62401] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3707), 7, + STATE(1422), 1, + sym_comment, + ACTIONS(3653), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111449,104 +118543,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54985] = 7, + [62423] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(1286), 1, - sym_parameter_list, - ACTIONS(3711), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1324), 2, + STATE(339), 1, + sym_compound_statement, + STATE(672), 1, sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55009] = 3, - ACTIONS(3), 1, + STATE(1423), 1, sym_comment, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3713), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55025] = 8, + [62457] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(309), 1, + STATE(142), 1, sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55051] = 8, + STATE(1424), 1, + sym_comment, + [62491] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3591), 1, + anon_sym_LBRACK, + STATE(1425), 1, sym_comment, - ACTIONS(35), 1, + STATE(1636), 1, + sym_gnu_asm_output_operand, + STATE(2047), 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, + [62517] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(369), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(387), 1, sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55077] = 3, - ACTIONS(3), 1, + STATE(1426), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACK, - ACTIONS(3717), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55093] = 3, + [62551] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3575), 1, anon_sym_LBRACK, - ACTIONS(3721), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55109] = 3, + STATE(1427), 1, + sym_comment, + STATE(1622), 1, + sym_gnu_asm_input_operand, + STATE(1903), 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, + [62577] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3662), 1, + aux_sym_preproc_elif_token1, + STATE(1497), 1, + sym_enumerator, + STATE(1428), 2, sym_comment, - ACTIONS(3727), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(3660), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [62603] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3666), 1, anon_sym_LBRACK, - ACTIONS(3725), 7, + STATE(1429), 1, + sym_comment, + ACTIONS(3664), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111554,202 +118686,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55125] = 8, + [62625] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(139), 1, + STATE(425), 1, sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55151] = 8, - ACTIONS(3), 1, + STATE(1430), 1, sym_comment, - ACTIONS(35), 1, + [62659] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(503), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(392), 1, + STATE(386), 1, sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55177] = 8, - ACTIONS(3), 1, + STATE(1431), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, - anon_sym_LBRACK, - STATE(427), 1, - sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55203] = 8, + [62693] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(145), 1, + STATE(156), 1, sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55229] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, - anon_sym_LBRACK, - STATE(326), 1, - sym_compound_statement, - STATE(1286), 1, + STATE(1313), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55255] = 8, - ACTIONS(3), 1, + STATE(1432), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 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, - [55281] = 8, + [62727] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - STATE(347), 1, - sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 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, - [55327] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - sym_identifier, - ACTIONS(3734), 1, - aux_sym_preproc_elif_token1, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - ACTIONS(3732), 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, + STATE(1433), 1, sym_comment, - ACTIONS(3736), 1, - sym_identifier, - ACTIONS(3741), 1, - aux_sym_preproc_elif_token1, - STATE(1410), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(3739), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [55369] = 8, + ACTIONS(3668), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [62759] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3672), 1, anon_sym_LBRACK, - STATE(413), 1, - sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55395] = 3, - ACTIONS(3), 1, + STATE(1434), 1, sym_comment, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3743), 7, + ACTIONS(3670), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111757,44 +118794,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55411] = 4, + [62781] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3676), 1, aux_sym_preproc_elif_token1, - ACTIONS(3751), 1, + ACTIONS(3678), 1, anon_sym_EQ, - ACTIONS(3747), 6, + STATE(1435), 1, + sym_comment, + ACTIONS(3674), 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, - [55429] = 8, + [62805] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3682), 1, + anon_sym_LBRACK, + STATE(1436), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3680), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3510), 1, - anon_sym_LBRACK, - STATE(128), 1, - sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55455] = 3, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62827] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3755), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3686), 1, anon_sym_LBRACK, - ACTIONS(3753), 7, + STATE(1437), 1, + sym_comment, + ACTIONS(3684), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111802,12 +118846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55471] = 3, + [62849] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3690), 1, anon_sym_LBRACK, - ACTIONS(3757), 7, + STATE(1438), 1, + sym_comment, + ACTIONS(3688), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111815,8401 +118863,11105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55487] = 8, + [62871] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(503), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, STATE(328), 1, sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55513] = 5, - ACTIONS(3), 1, + STATE(1439), 1, sym_comment, - ACTIONS(3653), 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, - [55533] = 3, + [62905] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3694), 1, anon_sym_LBRACK, - ACTIONS(3761), 6, + STATE(1440), 1, + sym_comment, + ACTIONS(3692), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55548] = 4, + anon_sym_COLON, + [62927] = 11, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(135), 1, + sym_compound_statement, + STATE(672), 1, + sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1441), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3765), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [55565] = 7, + [62961] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(503), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3771), 1, - anon_sym_RPAREN, - STATE(1286), 1, + STATE(384), 1, + sym_compound_statement, + STATE(672), 1, + sym_attribute_declaration, + STATE(1313), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1442), 1, + sym_comment, + [62995] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(369), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(337), 1, + sym_compound_statement, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55588] = 3, + STATE(1443), 1, + sym_comment, + [63029] = 11, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(423), 1, + sym_compound_statement, + STATE(672), 1, + sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1444), 1, sym_comment, - ACTIONS(3775), 1, + [63063] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3698), 1, anon_sym_LBRACK, - ACTIONS(3773), 6, + STATE(1445), 1, + sym_comment, + ACTIONS(3696), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55603] = 3, + anon_sym_COLON, + [63085] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(415), 1, + sym_compound_statement, + STATE(672), 1, + sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1446), 1, + sym_comment, + [63119] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3700), 1, + sym_identifier, + ACTIONS(3705), 1, + aux_sym_preproc_elif_token1, + STATE(1862), 1, + sym_enumerator, + STATE(1447), 2, + sym_comment, + aux_sym_preproc_if_in_enumerator_list_repeat1, + ACTIONS(3703), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [63145] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3707), 1, + anon_sym_LBRACK, + ACTIONS(3710), 1, + anon_sym_EQ, + ACTIONS(3712), 1, + anon_sym_DOT, + STATE(1448), 2, sym_comment, - ACTIONS(3779), 1, + aux_sym_initializer_pair_repeat1, + STATE(1674), 3, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + [63170] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3717), 1, anon_sym_LBRACK, - ACTIONS(3777), 6, + STATE(1449), 1, + sym_comment, + ACTIONS(3715), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, - STATE(1433), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3467), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [55635] = 7, + [63191] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3781), 1, + ACTIONS(3719), 1, anon_sym_RPAREN, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55658] = 3, - ACTIONS(3), 1, + STATE(1450), 1, sym_comment, - ACTIONS(3785), 1, + [63222] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3723), 1, anon_sym_LBRACK, - ACTIONS(3783), 6, + STATE(1451), 1, + sym_comment, + ACTIONS(3721), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55673] = 7, + [63243] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, + ACTIONS(3456), 1, anon_sym_LBRACK, - ACTIONS(3787), 1, + ACTIONS(3725), 1, anon_sym_RPAREN, - STATE(1393), 1, - sym_parameter_list, - STATE(1368), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1313), 1, + sym_parameter_list, + STATE(1351), 1, aux_sym_attributed_declarator_repeat1, - [55696] = 3, - ACTIONS(3), 1, + STATE(1452), 1, sym_comment, - ACTIONS(3791), 1, + [63274] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3729), 1, anon_sym_LBRACK, - ACTIONS(3789), 6, + STATE(1453), 1, + sym_comment, + ACTIONS(3727), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55711] = 7, + [63295] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3540), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, anon_sym_LBRACK, - ACTIONS(3793), 1, + STATE(1454), 1, + sym_comment, + ACTIONS(3731), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1393), 1, - sym_parameter_list, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55734] = 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [63316] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3737), 1, anon_sym_LBRACK, - ACTIONS(3795), 1, - anon_sym_EQ, - ACTIONS(3797), 1, - anon_sym_DOT, - STATE(1440), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [55753] = 7, - ACTIONS(3), 1, + STATE(1455), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3735), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3625), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [63337] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3741), 1, anon_sym_LBRACK, - ACTIONS(3799), 1, + STATE(1456), 1, + sym_comment, + ACTIONS(3739), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55776] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [63358] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3745), 1, anon_sym_LBRACK, - ACTIONS(3801), 6, + STATE(1457), 1, + sym_comment, + ACTIONS(3743), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55791] = 4, + [63379] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, anon_sym___attribute__, - STATE(1433), 2, + STATE(1531), 1, sym_attribute_specifier, + STATE(1458), 2, + sym_comment, aux_sym_type_definition_repeat1, - ACTIONS(3805), 4, + ACTIONS(3747), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [55808] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2353), 1, - anon_sym_LBRACE, - ACTIONS(3810), 1, - sym_identifier, - STATE(788), 1, - sym_field_declaration_list, - STATE(1483), 1, - sym_attribute_specifier, - STATE(1588), 1, - sym_ms_declspec_modifier, - [55833] = 3, + [63402] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3754), 1, anon_sym_LBRACK, - ACTIONS(3812), 6, + STATE(1459), 1, + sym_comment, + ACTIONS(3752), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55848] = 4, + [63423] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - STATE(1433), 2, - sym_attribute_specifier, + STATE(1458), 1, aux_sym_type_definition_repeat1, - ACTIONS(3816), 4, + STATE(1460), 1, + sym_comment, + STATE(1531), 1, + sym_attribute_specifier, + ACTIONS(3756), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [55865] = 7, + [63448] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3760), 1, + anon_sym_COMMA, + ACTIONS(3762), 1, + aux_sym_preproc_elif_token1, + STATE(1461), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3758), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [63471] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + STATE(1458), 1, + aux_sym_type_definition_repeat1, + STATE(1462), 1, + sym_comment, + STATE(1531), 1, + sym_attribute_specifier, + ACTIONS(3439), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [63496] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3579), 1, anon_sym_LBRACK, - ACTIONS(3818), 1, + ACTIONS(3764), 1, anon_sym_RPAREN, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, + STATE(672), 1, sym_attribute_declaration, + STATE(1418), 1, aux_sym_attributed_declarator_repeat1, - [55888] = 3, - ACTIONS(3), 1, + STATE(1454), 1, + sym_parameter_list, + STATE(1463), 1, sym_comment, - ACTIONS(3822), 1, + [63527] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3768), 1, anon_sym_LBRACK, - ACTIONS(3820), 6, + STATE(1464), 1, + sym_comment, + ACTIONS(3766), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55903] = 7, + [63548] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3490), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_EQ, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + ACTIONS(3770), 1, + anon_sym_RPAREN, + STATE(672), 1, sym_attribute_declaration, + STATE(1395), 1, aux_sym_attributed_declarator_repeat1, - [55926] = 5, + STATE(1436), 1, + sym_parameter_list, + STATE(1465), 1, + sym_comment, + [63579] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3579), 1, + anon_sym_LBRACK, + ACTIONS(3772), 1, + anon_sym_RPAREN, + STATE(672), 1, + sym_attribute_declaration, + STATE(1418), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1454), 1, + sym_parameter_list, + STATE(1466), 1, sym_comment, - ACTIONS(3824), 1, + [63610] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1817), 1, anon_sym_LBRACK, - ACTIONS(3827), 1, + ACTIONS(3774), 1, anon_sym_EQ, - ACTIONS(3829), 1, + ACTIONS(3776), 1, anon_sym_DOT, - STATE(1440), 4, + STATE(1448), 1, + aux_sym_initializer_pair_repeat1, + STATE(1467), 1, + sym_comment, + STATE(1674), 3, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, - aux_sym_initializer_pair_repeat1, - [55945] = 3, + [63637] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3834), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, anon_sym_LBRACK, - ACTIONS(3832), 6, - anon_sym_COMMA, + ACTIONS(3778), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [55960] = 3, + STATE(672), 1, + sym_attribute_declaration, + STATE(1395), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1436), 1, + sym_parameter_list, + STATE(1468), 1, + sym_comment, + [63668] = 10, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + ACTIONS(3567), 1, + anon_sym_EQ, + STATE(672), 1, + sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1469), 1, sym_comment, - ACTIONS(3838), 1, + [63699] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3782), 1, anon_sym_LBRACK, - ACTIONS(3836), 6, + STATE(1470), 1, + sym_comment, + ACTIONS(3780), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55975] = 4, + [63720] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(35), 1, + anon_sym___attribute__, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(2365), 1, + anon_sym_LBRACE, + ACTIONS(3784), 1, + sym_identifier, + STATE(819), 1, + sym_field_declaration_list, + STATE(1471), 1, + sym_comment, + STATE(1518), 1, + sym_attribute_specifier, + STATE(1629), 1, + sym_ms_declspec_modifier, + [63751] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1472), 1, sym_comment, - ACTIONS(3840), 1, - anon_sym_LPAREN2, - STATE(1445), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3842), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [55991] = 6, + ACTIONS(3786), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3788), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [63771] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1473), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3790), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3792), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [63791] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3846), 1, + ACTIONS(3796), 1, anon_sym_SEMI, - STATE(1566), 1, + STATE(1474), 1, + sym_comment, + STATE(1662), 1, aux_sym_declaration_repeat1, - STATE(1625), 1, + STATE(1663), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56011] = 4, + [63817] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3800), 1, anon_sym_LPAREN2, - STATE(1445), 2, - sym_gnu_asm_qualifier, + STATE(1475), 1, + sym_comment, + STATE(1480), 1, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3852), 3, + STATE(1584), 1, + sym_gnu_asm_qualifier, + ACTIONS(3802), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [56027] = 5, + [63841] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1476), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3857), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym_parameter_list, - ACTIONS(3855), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56045] = 5, + STATE(2008), 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, + [63861] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1477), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3857), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym_parameter_list, - ACTIONS(3859), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 2, + ACTIONS(3790), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3863), 4, + ACTIONS(3792), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56077] = 5, + [63881] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1478), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3857), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym_parameter_list, - ACTIONS(3865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56095] = 6, + ACTIONS(3804), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3806), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [63901] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3867), 1, + ACTIONS(3808), 1, anon_sym_SEMI, - STATE(1575), 1, + STATE(1479), 1, + sym_comment, + STATE(1623), 1, aux_sym_declaration_repeat1, - STATE(1576), 1, + STATE(1624), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56115] = 6, + [63927] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3810), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, - anon_sym_LBRACK, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56135] = 3, + STATE(1480), 1, + sym_comment, + STATE(1487), 1, + aux_sym_gnu_asm_expression_repeat1, + STATE(1584), 1, + sym_gnu_asm_qualifier, + ACTIONS(3802), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [63951] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1481), 1, sym_comment, - STATE(1871), 1, + STATE(1983), 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, - [56149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3871), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3873), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3875), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3877), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3879), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56191] = 3, + [63971] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1482), 1, sym_comment, - ACTIONS(3570), 2, + ACTIONS(3812), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3881), 4, + ACTIONS(3814), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56205] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(662), 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] = 3, + [63991] = 9, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(37), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3456), 1, + anon_sym_LBRACK, + STATE(672), 1, + sym_attribute_declaration, + STATE(1314), 1, + sym_parameter_list, + STATE(1351), 1, + aux_sym_attributed_declarator_repeat1, + STATE(1483), 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, - [56233] = 6, + [64019] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3883), 1, + ACTIONS(3816), 1, anon_sym_SEMI, - STATE(1639), 1, - sym_gnu_asm_expression, - STATE(1662), 1, - aux_sym_declaration_repeat1, - ACTIONS(3848), 2, - anon_sym_asm, - anon_sym___asm__, - [56253] = 6, - ACTIONS(3), 1, + STATE(1484), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_SEMI, - STATE(1592), 1, + STATE(1710), 1, sym_gnu_asm_expression, - STATE(1600), 1, + STATE(1711), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56273] = 6, + [64045] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3887), 1, + ACTIONS(3818), 1, anon_sym_SEMI, - STATE(1608), 1, - sym_gnu_asm_expression, - STATE(1609), 1, + STATE(1485), 1, + sym_comment, + STATE(1682), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + STATE(1683), 1, + sym_gnu_asm_expression, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56293] = 3, + [64071] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1486), 1, sym_comment, - ACTIONS(3889), 2, + ACTIONS(3820), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3891), 4, + ACTIONS(3822), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56307] = 4, + [64091] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3824), 1, anon_sym_LPAREN2, - STATE(1443), 2, + STATE(1584), 1, sym_gnu_asm_qualifier, + STATE(1487), 2, + sym_comment, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3842), 3, + ACTIONS(3826), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [56323] = 3, + [64113] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1488), 1, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3829), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3897), 4, + ACTIONS(3831), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56337] = 3, + [64133] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1489), 1, sym_comment, - ACTIONS(3734), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3732), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3833), 2, + anon_sym_RBRACE, sym_identifier, - [56351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(3899), 1, - anon_sym_SEMI, - STATE(1571), 1, - aux_sym_declaration_repeat1, - STATE(1572), 1, - sym_gnu_asm_expression, - ACTIONS(3848), 2, - anon_sym_asm, - anon_sym___asm__, - [56371] = 3, + ACTIONS(3835), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [64153] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1490), 1, sym_comment, - ACTIONS(3901), 2, + ACTIONS(3524), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3903), 4, + ACTIONS(3837), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56385] = 6, + [64173] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3841), 1, + anon_sym_LBRACK, + STATE(1491), 1, + sym_comment, + STATE(1519), 1, + sym_parameter_list, + ACTIONS(3839), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64197] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(673), 1, + sym_string_literal, + STATE(1492), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [64217] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3905), 1, + ACTIONS(3843), 1, anon_sym_SEMI, - STATE(1681), 1, - sym_gnu_asm_expression, - STATE(1682), 1, + STATE(1493), 1, + sym_comment, + STATE(1691), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + STATE(1697), 1, + sym_gnu_asm_expression, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56405] = 5, + [64243] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1494), 1, + sym_comment, + STATE(1519), 1, sym_parameter_list, - ACTIONS(3907), 3, + ACTIONS(3845), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56423] = 6, + [64267] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3847), 1, anon_sym_SEMI, - STATE(1628), 1, + STATE(1495), 1, + sym_comment, + STATE(1693), 1, sym_gnu_asm_expression, - STATE(1636), 1, + STATE(1694), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56443] = 6, + [64293] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3911), 1, + ACTIONS(3849), 1, anon_sym_SEMI, - STATE(1652), 1, - sym_gnu_asm_expression, - STATE(1653), 1, + STATE(1496), 1, + sym_comment, + STATE(1686), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + STATE(1688), 1, + sym_gnu_asm_expression, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56463] = 6, + [64319] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3762), 1, + aux_sym_preproc_elif_token1, + STATE(1497), 1, + sym_comment, + ACTIONS(3758), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [64339] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3841), 1, + anon_sym_LBRACK, + STATE(1498), 1, sym_comment, - ACTIONS(3844), 1, + STATE(1519), 1, + sym_parameter_list, + ACTIONS(3851), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64363] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3913), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - STATE(1585), 1, + STATE(1499), 1, + sym_comment, + STATE(1658), 1, aux_sym_declaration_repeat1, - STATE(1587), 1, + STATE(1659), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56483] = 5, + [64389] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1500), 1, + sym_comment, + STATE(1519), 1, sym_parameter_list, - ACTIONS(3915), 3, + ACTIONS(3855), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56501] = 5, + [64413] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1501), 1, + sym_comment, + STATE(1519), 1, sym_parameter_list, - ACTIONS(3917), 3, + ACTIONS(3857), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56519] = 5, + [64437] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1502), 1, + sym_comment, + STATE(1519), 1, sym_parameter_list, - ACTIONS(3919), 3, + ACTIONS(3859), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56537] = 3, + [64461] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(3861), 1, + anon_sym_SEMI, + STATE(1503), 1, sym_comment, - ACTIONS(3921), 2, + STATE(1667), 1, + aux_sym_declaration_repeat1, + STATE(1668), 1, + sym_gnu_asm_expression, + ACTIONS(3798), 2, + anon_sym_asm, + anon_sym___asm__, + [64487] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1504), 1, + sym_comment, + ACTIONS(3812), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3923), 4, + ACTIONS(3814), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56551] = 6, + [64507] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3925), 1, + ACTIONS(3863), 1, anon_sym_SEMI, - STATE(1577), 1, + STATE(1505), 1, + sym_comment, + STATE(1670), 1, aux_sym_declaration_repeat1, - STATE(1578), 1, + STATE(1671), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56571] = 3, + [64533] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3705), 1, + aux_sym_preproc_elif_token1, + STATE(1506), 1, + sym_comment, + ACTIONS(3703), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [64553] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1507), 1, sym_comment, - ACTIONS(3877), 2, + ACTIONS(3865), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3879), 4, + ACTIONS(3867), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56585] = 3, + [64573] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_LPAREN2, + ACTIONS(3841), 1, + anon_sym_LBRACK, + STATE(1508), 1, + sym_comment, + STATE(1519), 1, + sym_parameter_list, + ACTIONS(3869), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64597] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1509), 1, sym_comment, - ACTIONS(3861), 2, + ACTIONS(3871), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3863), 4, + ACTIONS(3873), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56599] = 6, + [64617] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(3927), 1, + ACTIONS(3875), 1, anon_sym_SEMI, - STATE(1601), 1, + STATE(1510), 1, + sym_comment, + STATE(1599), 1, sym_gnu_asm_expression, - STATE(1605), 1, + STATE(1721), 1, + aux_sym_declaration_repeat1, + ACTIONS(3798), 2, + anon_sym_asm, + anon_sym___asm__, + [64643] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + anon_sym_SEMI, + STATE(1511), 1, + sym_comment, + STATE(1643), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + STATE(1644), 1, + sym_gnu_asm_expression, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - [56619] = 2, + [64669] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1512), 1, sym_comment, - ACTIONS(3929), 5, + ACTIONS(3879), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56630] = 2, + [64686] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1513), 1, sym_comment, - ACTIONS(3931), 5, + ACTIONS(3881), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56641] = 6, + [64703] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1514), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2353), 1, - anon_sym_LBRACE, - ACTIONS(3933), 1, - sym_identifier, - STATE(783), 1, - sym_field_declaration_list, - STATE(1599), 1, - sym_ms_declspec_modifier, - [56660] = 2, + STATE(1791), 1, + sym_gnu_asm_expression, + ACTIONS(3798), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3883), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [64724] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1515), 1, sym_comment, - ACTIONS(3935), 5, + ACTIONS(3885), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56671] = 5, + [64741] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(3939), 1, + ACTIONS(3889), 1, anon_sym_COLON_COLON, - STATE(1728), 1, + STATE(1516), 1, + sym_comment, + STATE(1778), 1, sym_argument_list, - ACTIONS(3937), 2, + ACTIONS(3887), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [56688] = 2, + [64764] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1517), 1, sym_comment, - ACTIONS(3941), 5, + ACTIONS(3891), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56699] = 2, + [64781] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(39), 1, + anon_sym___declspec, + ACTIONS(2365), 1, + anon_sym_LBRACE, + ACTIONS(3893), 1, + sym_identifier, + STATE(807), 1, + sym_field_declaration_list, + STATE(1518), 1, sym_comment, - ACTIONS(3943), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56710] = 2, + STATE(1699), 1, + sym_ms_declspec_modifier, + [64806] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1519), 1, sym_comment, - ACTIONS(3945), 5, + ACTIONS(3895), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56721] = 2, + [64823] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1520), 1, sym_comment, - ACTIONS(3947), 5, + ACTIONS(3897), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56732] = 2, + [64840] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1521), 1, sym_comment, - ACTIONS(3949), 5, + ACTIONS(3899), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56743] = 5, + [64857] = 8, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(3901), 1, + aux_sym_preproc_if_token2, + STATE(1461), 1, + sym_enumerator, + STATE(1522), 1, sym_comment, - ACTIONS(3508), 1, + STATE(1563), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1567), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + [64882] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1519), 1, sym_parameter_list, - ACTIONS(3711), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56760] = 2, - ACTIONS(3), 1, + STATE(1523), 1, sym_comment, - ACTIONS(3951), 5, + ACTIONS(3668), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56771] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, - sym_identifier, - ACTIONS(3953), 1, - aux_sym_preproc_if_token2, - STATE(1420), 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, - [56790] = 4, + [64905] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1524), 1, sym_comment, - STATE(1766), 1, + STATE(1771), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3798), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3955), 2, + ACTIONS(3903), 2, anon_sym_COMMA, anon_sym_SEMI, - [56805] = 2, + [64926] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1525), 1, sym_comment, - ACTIONS(3957), 5, + ACTIONS(3905), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56816] = 2, + [64943] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1526), 1, sym_comment, - ACTIONS(3959), 5, + ACTIONS(3907), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56827] = 2, + [64960] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1527), 1, sym_comment, - ACTIONS(3961), 5, + ACTIONS(3909), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56838] = 6, + [64977] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(39), 1, anon_sym___declspec, - ACTIONS(2353), 1, + ACTIONS(2365), 1, anon_sym_LBRACE, - ACTIONS(3963), 1, + ACTIONS(3911), 1, sym_identifier, - STATE(782), 1, + STATE(818), 1, sym_field_declaration_list, - STATE(1603), 1, + STATE(1528), 1, + sym_comment, + STATE(1632), 1, sym_ms_declspec_modifier, - [56857] = 4, + [65002] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1529), 1, sym_comment, - STATE(1698), 1, - sym_gnu_asm_expression, - ACTIONS(3848), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3965), 2, + ACTIONS(3913), 5, anon_sym_COMMA, - anon_sym_SEMI, - [56872] = 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [65019] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1530), 1, sym_comment, - ACTIONS(3967), 5, + ACTIONS(3915), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56883] = 2, + [65036] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1531), 1, sym_comment, - ACTIONS(3969), 4, + ACTIONS(3534), 5, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_asm, anon_sym___asm__, - [56893] = 4, - ACTIONS(3211), 1, + [65053] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1532), 1, sym_comment, - ACTIONS(3971), 1, - anon_sym_SQUOTE, - STATE(1560), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3973), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [56907] = 4, + ACTIONS(3917), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [65070] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3919), 1, + anon_sym_COMMA, + STATE(1533), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, - ACTIONS(3975), 1, - anon_sym_SEMI, - STATE(1433), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [56921] = 4, + STATE(1581), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3921), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65090] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3486), 1, + anon_sym_COMMA, + STATE(1534), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, - ACTIONS(3977), 1, + STATE(1546), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3923), 2, anon_sym_SEMI, - STATE(1433), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [56935] = 4, + anon_sym___attribute__, + [65110] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(3979), 1, + ACTIONS(3925), 1, anon_sym_SEMI, - STATE(1503), 2, + STATE(1531), 1, sym_attribute_specifier, + STATE(1535), 1, + sym_comment, + STATE(1589), 1, aux_sym_type_definition_repeat1, - [56949] = 5, + [65132] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, + sym_identifier, + ACTIONS(3901), 1, + aux_sym_preproc_if_token2, + STATE(1536), 1, sym_comment, - ACTIONS(3981), 1, - anon_sym_COMMA, - ACTIONS(3983), 1, - anon_sym_RPAREN, - STATE(1569), 1, - aux_sym_parameter_list_repeat1, - STATE(1658), 1, - aux_sym__old_style_parameter_list_repeat1, - [56965] = 4, + STATE(1567), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1862), 1, + sym_enumerator, + [65154] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1537), 2, sym_comment, - ACTIONS(3985), 1, - anon_sym___except, - ACTIONS(3987), 1, - anon_sym___finally, - STATE(191), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [56979] = 4, + aux_sym__type_definition_declarators_repeat1, + [65172] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3932), 1, + aux_sym_preproc_include_token2, + ACTIONS(3934), 1, + anon_sym_LPAREN, + ACTIONS(3936), 1, + sym_preproc_arg, + STATE(1538), 1, + sym_comment, + STATE(1793), 1, + sym_preproc_params, + [65194] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(3938), 1, + aux_sym_preproc_if_token2, + STATE(1497), 1, + sym_enumerator, + STATE(1539), 1, + sym_comment, + STATE(1563), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [65216] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3934), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + aux_sym_preproc_include_token2, + ACTIONS(3942), 1, + sym_preproc_arg, + STATE(1540), 1, sym_comment, - ACTIONS(3442), 1, + STATE(1787), 1, + sym_preproc_params, + [65238] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(3989), 1, + ACTIONS(3944), 1, anon_sym_SEMI, - STATE(1504), 2, - sym_attribute_specifier, + STATE(1458), 1, aux_sym_type_definition_repeat1, - [56993] = 4, - ACTIONS(3), 1, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1541), 1, sym_comment, - ACTIONS(3991), 1, - anon_sym_COMMA, - STATE(1533), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3993), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57007] = 4, + [65260] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(3995), 1, + ACTIONS(3946), 1, anon_sym_SEMI, - STATE(1535), 2, + STATE(1458), 1, + aux_sym_type_definition_repeat1, + STATE(1531), 1, sym_attribute_specifier, + STATE(1542), 1, + sym_comment, + [65282] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(3948), 1, + anon_sym_SEMI, + STATE(1458), 1, aux_sym_type_definition_repeat1, - [57021] = 4, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1543), 1, + sym_comment, + [65304] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3950), 1, + anon_sym___except, + ACTIONS(3952), 1, + anon_sym___finally, + STATE(1544), 1, sym_comment, - ACTIONS(3442), 1, + STATE(276), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [65324] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(3997), 1, + ACTIONS(3954), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1531), 1, sym_attribute_specifier, + STATE(1545), 1, + sym_comment, + STATE(1592), 1, aux_sym_type_definition_repeat1, - [57035] = 4, + [65346] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3486), 1, anon_sym_COMMA, - STATE(1512), 1, + STATE(1546), 1, + sym_comment, + STATE(1547), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4002), 2, + ACTIONS(3956), 2, anon_sym_SEMI, anon_sym___attribute__, - [57049] = 4, + [65366] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4004), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3958), 1, anon_sym_COMMA, - STATE(1532), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4006), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57063] = 5, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4008), 1, - aux_sym_preproc_include_token2, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - sym_preproc_arg, - STATE(1746), 1, - sym_preproc_params, - [57079] = 5, - ACTIONS(3211), 1, + ACTIONS(3961), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1547), 2, sym_comment, - ACTIONS(4014), 1, + aux_sym__field_declaration_declarator_repeat1, + [65384] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3963), 1, anon_sym_DQUOTE, - ACTIONS(4016), 1, + ACTIONS(3965), 1, aux_sym_string_literal_token1, - ACTIONS(4018), 1, + ACTIONS(3967), 1, sym_escape_sequence, - STATE(1557), 1, + STATE(1548), 1, + sym_comment, + STATE(1574), 1, aux_sym_string_literal_repeat1, - [57095] = 4, - ACTIONS(3), 1, + [65406] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3969), 1, + anon_sym_SQUOTE, + STATE(1549), 1, sym_comment, - ACTIONS(3536), 1, - anon_sym_COMMA, - STATE(1512), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4020), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57109] = 5, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4022), 1, - aux_sym_preproc_include_token2, - ACTIONS(4024), 1, - sym_preproc_arg, - STATE(1755), 1, - sym_preproc_params, - [57125] = 5, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4026), 1, - aux_sym_preproc_include_token2, - ACTIONS(4028), 1, - sym_preproc_arg, - STATE(1727), 1, - sym_preproc_params, - [57141] = 4, + STATE(1573), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3971), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [65426] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4030), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3617), 1, anon_sym_COMMA, - STATE(1519), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4033), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57155] = 4, - ACTIONS(3), 1, + STATE(1537), 1, + aux_sym__type_definition_declarators_repeat1, + STATE(1550), 1, sym_comment, - ACTIONS(4035), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4037), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57169] = 4, + ACTIONS(3973), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [65446] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(3975), 1, + anon_sym_SEMI, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1543), 1, + aux_sym_type_definition_repeat1, + STATE(1551), 1, sym_comment, - ACTIONS(4035), 1, + [65468] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3977), 1, anon_sym_COMMA, - STATE(1520), 1, + STATE(1552), 1, + sym_comment, + STATE(1578), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4039), 2, + ACTIONS(3979), 2, anon_sym_RPAREN, anon_sym_COLON, - [57183] = 4, - ACTIONS(3211), 1, + [65488] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(3981), 1, + anon_sym_SEMI, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1553), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_SQUOTE, - STATE(1560), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3973), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57197] = 5, + STATE(1576), 1, + aux_sym_type_definition_repeat1, + [65510] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(3983), 1, + anon_sym_SEMI, + STATE(1458), 1, + aux_sym_type_definition_repeat1, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1554), 1, sym_comment, - ACTIONS(3508), 1, + [65532] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - ACTIONS(4043), 1, + ACTIONS(3985), 1, anon_sym_RPAREN, - STATE(1490), 1, + STATE(1519), 1, sym_parameter_list, - [57213] = 2, + STATE(1555), 1, + sym_comment, + [65554] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3987), 1, + anon_sym___except, + ACTIONS(3989), 1, + anon_sym___finally, + STATE(1556), 1, sym_comment, - ACTIONS(4045), 4, + STATE(201), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [65574] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [57223] = 5, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4047), 1, - anon_sym_DQUOTE, - ACTIONS(4049), 1, - aux_sym_string_literal_token1, - ACTIONS(4051), 1, - sym_escape_sequence, - STATE(1515), 1, - aux_sym_string_literal_repeat1, - [57239] = 5, - ACTIONS(3211), 1, + STATE(1557), 1, sym_comment, - ACTIONS(4010), 1, + STATE(1809), 1, + sym_argument_list, + ACTIONS(3991), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [65594] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3934), 1, anon_sym_LPAREN, - ACTIONS(4053), 1, + ACTIONS(3993), 1, aux_sym_preproc_include_token2, - ACTIONS(4055), 1, + ACTIONS(3995), 1, sym_preproc_arg, - STATE(1699), 1, + STATE(1558), 1, + sym_comment, + STATE(1807), 1, sym_preproc_params, - [57255] = 4, + [65616] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(4057), 1, + ACTIONS(3997), 1, anon_sym_SEMI, - STATE(1433), 2, - sym_attribute_specifier, + STATE(1458), 1, aux_sym_type_definition_repeat1, - [57269] = 5, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4059), 1, - anon_sym_DQUOTE, - ACTIONS(4061), 1, - aux_sym_string_literal_token1, - ACTIONS(4063), 1, - sym_escape_sequence, - STATE(1564), 1, - aux_sym_string_literal_repeat1, - [57285] = 4, - ACTIONS(3), 1, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1559), 1, sym_comment, - ACTIONS(4004), 1, - anon_sym_COMMA, - STATE(1513), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4065), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57299] = 4, + [65638] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(4067), 1, + ACTIONS(3999), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1531), 1, sym_attribute_specifier, + STATE(1559), 1, aux_sym_type_definition_repeat1, - [57313] = 4, - ACTIONS(3), 1, + STATE(1560), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, - ACTIONS(4069), 1, - anon_sym_SEMI, - STATE(1527), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [57327] = 4, + [65660] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4001), 1, + anon_sym___except, + ACTIONS(4003), 1, + anon_sym___finally, + STATE(1561), 1, sym_comment, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(1532), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4074), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57341] = 4, + STATE(108), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [65680] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4005), 1, + anon_sym___except, + ACTIONS(4007), 1, + anon_sym___finally, + STATE(1562), 1, sym_comment, - ACTIONS(3991), 1, - anon_sym_COMMA, - STATE(1539), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4076), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57355] = 5, + STATE(276), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [65700] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(4009), 1, + aux_sym_preproc_if_token2, + STATE(1428), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1497), 1, + sym_enumerator, + STATE(1563), 1, sym_comment, - ACTIONS(3508), 1, + [65722] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - ACTIONS(4078), 1, + ACTIONS(4011), 1, anon_sym_RPAREN, - STATE(1490), 1, + STATE(1519), 1, sym_parameter_list, - [57371] = 4, - ACTIONS(3), 1, + STATE(1564), 1, + sym_comment, + [65744] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3965), 1, + aux_sym_string_literal_token1, + ACTIONS(3967), 1, + sym_escape_sequence, + ACTIONS(4013), 1, + anon_sym_DQUOTE, + STATE(1548), 1, + aux_sym_string_literal_repeat1, + STATE(1565), 1, sym_comment, - ACTIONS(3442), 1, + [65766] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(4080), 1, + ACTIONS(4015), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1531), 1, sym_attribute_specifier, + STATE(1541), 1, aux_sym_type_definition_repeat1, - [57385] = 4, - ACTIONS(3), 1, + STATE(1566), 1, sym_comment, - ACTIONS(3536), 1, - anon_sym_COMMA, - STATE(1512), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4082), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57399] = 4, + [65788] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, + sym_identifier, + ACTIONS(4017), 1, + aux_sym_preproc_if_token2, + STATE(1447), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1567), 1, sym_comment, - ACTIONS(3536), 1, - anon_sym_COMMA, - STATE(1516), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4084), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57413] = 5, - ACTIONS(3211), 1, + STATE(1862), 1, + sym_enumerator, + [65810] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3934), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, + aux_sym_preproc_include_token2, + ACTIONS(4021), 1, + sym_preproc_arg, + STATE(1568), 1, sym_comment, - ACTIONS(4010), 1, + STATE(1796), 1, + sym_preproc_params, + [65832] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3934), 1, anon_sym_LPAREN, - ACTIONS(4086), 1, + ACTIONS(4023), 1, aux_sym_preproc_include_token2, - ACTIONS(4088), 1, + ACTIONS(4025), 1, sym_preproc_arg, - STATE(1763), 1, + STATE(1569), 1, + sym_comment, + STATE(1802), 1, sym_preproc_params, - [57429] = 4, + [65854] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1570), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4027), 4, anon_sym_COMMA, - STATE(1539), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4093), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57443] = 4, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [65870] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4095), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4029), 1, anon_sym___except, - ACTIONS(4097), 1, + ACTIONS(4031), 1, anon_sym___finally, - STATE(242), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [57457] = 4, - ACTIONS(3), 1, + STATE(1571), 1, sym_comment, - ACTIONS(4099), 1, - anon_sym___except, - ACTIONS(4101), 1, - anon_sym___finally, - STATE(86), 2, + STATE(310), 2, sym_seh_except_clause, sym_seh_finally_clause, - [57471] = 4, + [65890] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3486), 1, + anon_sym_COMMA, + STATE(1547), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(1572), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(4033), 2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(4103), 1, + [65910] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4035), 1, + anon_sym_SQUOTE, + ACTIONS(4037), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + STATE(1573), 2, + sym_comment, + aux_sym_char_literal_repeat1, + [65928] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4040), 1, + anon_sym_DQUOTE, + ACTIONS(4042), 1, + aux_sym_string_literal_token1, + ACTIONS(4045), 1, + sym_escape_sequence, + STATE(1574), 2, + sym_comment, + aux_sym_string_literal_repeat1, + [65948] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3965), 1, + aux_sym_string_literal_token1, + ACTIONS(3967), 1, + sym_escape_sequence, + ACTIONS(4048), 1, + anon_sym_DQUOTE, + STATE(1575), 1, + sym_comment, + STATE(1580), 1, + aux_sym_string_literal_repeat1, + [65970] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(4050), 1, anon_sym_SEMI, - STATE(1530), 2, - sym_attribute_specifier, + STATE(1458), 1, aux_sym_type_definition_repeat1, - [57485] = 4, - ACTIONS(3), 1, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1576), 1, sym_comment, - ACTIONS(3635), 1, + [65992] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3965), 1, + aux_sym_string_literal_token1, + ACTIONS(3967), 1, + sym_escape_sequence, + ACTIONS(4052), 1, + anon_sym_DQUOTE, + STATE(1574), 1, + aux_sym_string_literal_repeat1, + STATE(1577), 1, + sym_comment, + [66014] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(1552), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4105), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57499] = 4, - ACTIONS(3211), 1, + ACTIONS(4057), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1578), 2, sym_comment, - ACTIONS(4107), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + [66032] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4059), 1, anon_sym_SQUOTE, - STATE(1560), 1, + STATE(1573), 1, aux_sym_char_literal_repeat1, - ACTIONS(3973), 2, + STATE(1579), 1, + sym_comment, + ACTIONS(3971), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [57513] = 4, + [66052] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3965), 1, + aux_sym_string_literal_token1, + ACTIONS(3967), 1, + sym_escape_sequence, + ACTIONS(4061), 1, + anon_sym_DQUOTE, + STATE(1574), 1, + aux_sym_string_literal_repeat1, + STATE(1580), 1, + sym_comment, + [66074] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3919), 1, + anon_sym_COMMA, + STATE(1581), 1, sym_comment, - ACTIONS(4109), 1, - anon_sym___except, - ACTIONS(4111), 1, - anon_sym___finally, - STATE(242), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [57527] = 5, + STATE(1590), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4063), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66094] = 7, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4065), 1, + anon_sym_COMMA, + ACTIONS(4067), 1, + anon_sym_RPAREN, + STATE(1582), 1, sym_comment, - ACTIONS(3514), 1, - sym_identifier, - ACTIONS(3953), 1, - aux_sym_preproc_if_token2, - STATE(1554), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - [57543] = 4, + STATE(1598), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1660), 1, + aux_sym_parameter_list_repeat1, + [66116] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4069), 1, + anon_sym_COMMA, + STATE(1583), 1, + sym_comment, + STATE(1591), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4071), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66136] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1584), 1, + sym_comment, + ACTIONS(4073), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [66152] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1585), 1, + sym_comment, + ACTIONS(4075), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [66168] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4077), 1, + anon_sym_SQUOTE, + STATE(1573), 1, + aux_sym_char_literal_repeat1, + STATE(1586), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3971), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66188] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(4113), 1, + ACTIONS(4079), 1, anon_sym_SEMI, - STATE(1511), 2, + STATE(1531), 1, sym_attribute_specifier, + STATE(1554), 1, aux_sym_type_definition_repeat1, - [57557] = 5, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4115), 1, - aux_sym_preproc_include_token2, - ACTIONS(4117), 1, - sym_preproc_arg, - STATE(1762), 1, - sym_preproc_params, - [57573] = 5, - ACTIONS(3211), 1, + STATE(1587), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4119), 1, - aux_sym_preproc_include_token2, - ACTIONS(4121), 1, - sym_preproc_arg, - STATE(1718), 1, - sym_preproc_params, - [57589] = 4, + [66210] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(4123), 1, + ACTIONS(4081), 1, anon_sym_SEMI, - STATE(1559), 2, + STATE(1531), 1, sym_attribute_specifier, + STATE(1542), 1, aux_sym_type_definition_repeat1, - [57603] = 4, - ACTIONS(3), 1, + STATE(1588), 1, sym_comment, - ACTIONS(3442), 1, + [66232] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(4125), 1, + ACTIONS(4083), 1, anon_sym_SEMI, - STATE(1433), 2, - sym_attribute_specifier, + STATE(1458), 1, aux_sym_type_definition_repeat1, - [57617] = 4, - ACTIONS(3), 1, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1589), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_COMMA, - STATE(1552), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4130), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57631] = 4, + [66254] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4085), 1, + anon_sym_COMMA, + ACTIONS(4088), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1590), 2, sym_comment, - ACTIONS(3457), 1, - sym_identifier, - ACTIONS(4132), 1, - aux_sym_preproc_if_token2, - STATE(1410), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [57645] = 5, + aux_sym_gnu_asm_input_operand_list_repeat1, + [66272] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4069), 1, + anon_sym_COMMA, + STATE(1591), 1, sym_comment, - ACTIONS(3514), 1, - sym_identifier, - ACTIONS(4134), 1, - aux_sym_preproc_if_token2, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - [57661] = 4, + STATE(1593), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4090), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66292] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym___attribute__, - ACTIONS(4136), 1, + ACTIONS(4092), 1, anon_sym_SEMI, - STATE(1551), 2, - sym_attribute_specifier, + STATE(1458), 1, aux_sym_type_definition_repeat1, - [57675] = 5, - ACTIONS(3211), 1, + STATE(1531), 1, + sym_attribute_specifier, + STATE(1592), 1, + sym_comment, + [66314] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4094), 1, + anon_sym_COMMA, + ACTIONS(4097), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1593), 2, + sym_comment, + aux_sym_gnu_asm_clobber_list_repeat1, + [66332] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3934), 1, + anon_sym_LPAREN, + ACTIONS(4099), 1, + aux_sym_preproc_include_token2, + ACTIONS(4101), 1, + sym_preproc_arg, + STATE(1594), 1, sym_comment, - ACTIONS(4016), 1, + STATE(1769), 1, + sym_preproc_params, + [66354] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3965), 1, aux_sym_string_literal_token1, - ACTIONS(4018), 1, + ACTIONS(3967), 1, sym_escape_sequence, - ACTIONS(4138), 1, + ACTIONS(4103), 1, anon_sym_DQUOTE, - STATE(1557), 1, + STATE(1577), 1, aux_sym_string_literal_repeat1, - [57691] = 5, - ACTIONS(3211), 1, + STATE(1595), 1, sym_comment, - ACTIONS(4140), 1, - anon_sym_DQUOTE, - ACTIONS(4142), 1, - aux_sym_string_literal_token1, - ACTIONS(4145), 1, - sym_escape_sequence, - STATE(1557), 1, - aux_sym_string_literal_repeat1, - [57707] = 5, - ACTIONS(3211), 1, + [66376] = 7, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(3934), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + aux_sym_preproc_include_token2, + ACTIONS(4107), 1, + sym_preproc_arg, + STATE(1596), 1, sym_comment, - ACTIONS(4148), 1, - anon_sym_DQUOTE, - ACTIONS(4150), 1, - aux_sym_string_literal_token1, - ACTIONS(4152), 1, - sym_escape_sequence, - STATE(1556), 1, - aux_sym_string_literal_repeat1, - [57723] = 4, + STATE(1801), 1, + sym_preproc_params, + [66398] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3977), 1, + anon_sym_COMMA, + STATE(1552), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + STATE(1597), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, - ACTIONS(4154), 1, - anon_sym_SEMI, - STATE(1433), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [57737] = 4, - ACTIONS(3211), 1, + ACTIONS(4109), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66418] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4111), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_RPAREN, + STATE(1598), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_SQUOTE, - STATE(1560), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4158), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57751] = 4, + STATE(1649), 1, + aux_sym__old_style_parameter_list_repeat1, + [66437] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4115), 1, + anon_sym_SEMI, + STATE(1599), 1, sym_comment, - ACTIONS(4161), 1, - anon_sym___except, - ACTIONS(4163), 1, - anon_sym___finally, - STATE(268), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [57765] = 4, + STATE(1716), 1, + aux_sym_declaration_repeat1, + [66456] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3012), 1, + anon_sym_COMMA, + ACTIONS(3020), 1, + anon_sym_RPAREN, + STATE(1600), 1, sym_comment, - ACTIONS(3457), 1, + STATE(1698), 1, + aux_sym_argument_list_repeat1, + [66475] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2743), 1, + anon_sym_LBRACE, + ACTIONS(4117), 1, sym_identifier, - ACTIONS(4165), 1, - aux_sym_preproc_if_token2, - STATE(1553), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [57779] = 4, + STATE(961), 1, + sym_enumerator_list, + STATE(1601), 1, + sym_comment, + [66494] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1602), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - STATE(1725), 1, - sym_argument_list, - ACTIONS(4167), 2, + ACTIONS(4119), 3, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [57793] = 5, - ACTIONS(3211), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [66509] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3187), 1, + anon_sym_COMMA, + ACTIONS(4121), 1, + anon_sym_RPAREN, + STATE(1603), 1, sym_comment, - ACTIONS(4016), 1, - aux_sym_string_literal_token1, - ACTIONS(4018), 1, - sym_escape_sequence, - ACTIONS(4169), 1, - anon_sym_DQUOTE, - STATE(1557), 1, - aux_sym_string_literal_repeat1, - [57809] = 4, + STATE(1695), 1, + aux_sym_preproc_argument_list_repeat1, + [66528] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1604), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(4123), 3, anon_sym_COMMA, - ACTIONS(4171), 1, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + [66543] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4125), 1, + anon_sym_COMMA, + ACTIONS(4128), 1, + anon_sym_RPAREN, + STATE(1605), 2, + sym_comment, + aux_sym_gnu_asm_goto_list_repeat1, + [66560] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4130), 1, + anon_sym_COMMA, + ACTIONS(4132), 1, + anon_sym_RPAREN, + STATE(1606), 1, + sym_comment, + STATE(1689), 1, + aux_sym_preproc_params_repeat1, + [66579] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, STATE(1579), 1, - aux_sym_declaration_repeat1, - [57822] = 4, + aux_sym_char_literal_repeat1, + STATE(1607), 1, + sym_comment, + ACTIONS(3971), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66596] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4134), 1, + aux_sym_preproc_include_token2, + ACTIONS(4136), 1, + anon_sym_LPAREN2, + STATE(1608), 1, + sym_comment, + STATE(1918), 1, + sym_preproc_argument_list, + [66615] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4138), 1, + anon_sym_COMMA, + ACTIONS(4140), 1, + anon_sym_RPAREN, + STATE(1605), 1, + aux_sym_gnu_asm_goto_list_repeat1, + STATE(1609), 1, sym_comment, - ACTIONS(3844), 1, + [66634] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4173), 1, + ACTIONS(4142), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1610), 1, + sym_comment, + STATE(1619), 1, aux_sym_declaration_repeat1, - [57835] = 4, + [66653] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2984), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3012), 1, anon_sym_COMMA, - ACTIONS(4175), 1, + ACTIONS(4144), 1, anon_sym_RPAREN, - STATE(1666), 1, + STATE(1611), 1, + sym_comment, + STATE(1698), 1, aux_sym_argument_list_repeat1, - [57848] = 4, + [66672] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1612), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(4146), 3, anon_sym_COMMA, - ACTIONS(4177), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57861] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [66687] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1613), 1, sym_comment, - ACTIONS(4179), 1, + ACTIONS(4148), 3, anon_sym_COMMA, - ACTIONS(4181), 1, anon_sym_RPAREN, - STATE(1633), 1, - aux_sym_parameter_list_repeat1, - [57874] = 4, + anon_sym_COLON, + [66702] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3187), 1, + anon_sym_COMMA, + ACTIONS(4150), 1, + anon_sym_RPAREN, + STATE(1614), 1, sym_comment, - ACTIONS(3844), 1, + STATE(1695), 1, + aux_sym_preproc_argument_list_repeat1, + [66721] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4152), 1, anon_sym_COMMA, - ACTIONS(4183), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57887] = 4, + ACTIONS(4155), 1, + anon_sym_RPAREN, + STATE(1615), 2, + sym_comment, + aux_sym_generic_expression_repeat1, + [66738] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1616), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(4157), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [66753] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, anon_sym_COMMA, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57900] = 4, + ACTIONS(4161), 1, + anon_sym_RBRACK_RBRACK, + STATE(1617), 1, + sym_comment, + STATE(1654), 1, + aux_sym_attribute_declaration_repeat1, + [66772] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3012), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, + anon_sym_RPAREN, + STATE(1618), 1, sym_comment, - ACTIONS(3844), 1, + STATE(1698), 1, + aux_sym_argument_list_repeat1, + [66791] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4163), 1, anon_sym_COMMA, - ACTIONS(4187), 1, + ACTIONS(4166), 1, anon_sym_SEMI, - STATE(1570), 1, + STATE(1619), 2, + sym_comment, aux_sym_declaration_repeat1, - [57913] = 4, + [66808] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4189), 1, + ACTIONS(4168), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [57926] = 4, - ACTIONS(3), 1, + STATE(1620), 1, sym_comment, - ACTIONS(4191), 1, + [66827] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4138), 1, anon_sym_COMMA, - ACTIONS(4194), 1, + ACTIONS(4170), 1, anon_sym_RPAREN, - STATE(1574), 1, - aux_sym__old_style_parameter_list_repeat1, - [57939] = 4, + STATE(1609), 1, + aux_sym_gnu_asm_goto_list_repeat1, + STATE(1621), 1, + sym_comment, + [66846] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1622), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(4172), 3, anon_sym_COMMA, - ACTIONS(4196), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57952] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [66861] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4198), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - STATE(1661), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [57965] = 4, - ACTIONS(3), 1, + STATE(1623), 1, sym_comment, - ACTIONS(3844), 1, + [66880] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4200), 1, + ACTIONS(4176), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1624), 1, + sym_comment, + STATE(1707), 1, aux_sym_declaration_repeat1, - [57978] = 4, + [66899] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4178), 1, + anon_sym_RPAREN, + ACTIONS(4180), 1, + anon_sym_COLON, + STATE(1625), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(4202), 1, - anon_sym_SEMI, - STATE(1590), 1, - aux_sym_declaration_repeat1, - [57991] = 4, + STATE(1713), 1, + sym_gnu_asm_output_operand_list, + [66918] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4182), 1, + anon_sym_RPAREN, + ACTIONS(4184), 1, + anon_sym_COLON, + STATE(1626), 1, sym_comment, - ACTIONS(4204), 1, + STATE(1717), 1, + sym_gnu_asm_input_operand_list, + [66937] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1627), 1, + sym_comment, + ACTIONS(4186), 3, anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58004] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [66952] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(4188), 1, + anon_sym_RPAREN, + STATE(1615), 1, + aux_sym_generic_expression_repeat1, + STATE(1628), 1, sym_comment, - ACTIONS(2725), 1, + [66971] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2365), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, + ACTIONS(4190), 1, sym_identifier, - STATE(922), 1, - sym_enumerator_list, - [58017] = 4, + STATE(807), 1, + sym_field_declaration_list, + STATE(1629), 1, + sym_comment, + [66990] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(4192), 1, + anon_sym_SEMI, + STATE(1630), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_COMMA, - ACTIONS(4213), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58030] = 4, + STATE(1956), 1, + sym_attribute_specifier, + [67009] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1549), 1, + aux_sym_char_literal_repeat1, + STATE(1631), 1, + sym_comment, + ACTIONS(3971), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [67026] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2365), 1, + anon_sym_LBRACE, + ACTIONS(4194), 1, + sym_identifier, + STATE(795), 1, + sym_field_declaration_list, + STATE(1632), 1, sym_comment, - ACTIONS(4215), 1, + [67045] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4196), 1, anon_sym_RPAREN, - ACTIONS(4217), 1, + ACTIONS(4198), 1, anon_sym_COLON, - STATE(1645), 1, - sym_gnu_asm_output_operand_list, - [58043] = 4, + STATE(1633), 1, + sym_comment, + STATE(1996), 1, + sym_gnu_asm_goto_list, + [67064] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2743), 1, + anon_sym_LBRACE, + ACTIONS(4200), 1, + sym_identifier, + STATE(1147), 1, + sym_enumerator_list, + STATE(1634), 1, + sym_comment, + [67083] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1635), 1, + sym_comment, + ACTIONS(4202), 3, + anon_sym_SQUOTE, + aux_sym_char_literal_token1, + sym_escape_sequence, + [67098] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1636), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(4204), 3, anon_sym_COMMA, - ACTIONS(2986), 1, anon_sym_RPAREN, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [58056] = 4, + anon_sym_COLON, + [67113] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4208), 1, + aux_sym_string_literal_token1, + STATE(1637), 1, + sym_comment, + ACTIONS(4206), 2, + anon_sym_DQUOTE, + sym_escape_sequence, + [67130] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1638), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(4210), 3, anon_sym_COMMA, - ACTIONS(4219), 1, anon_sym_SEMI, - STATE(1579), 1, + anon_sym___attribute__, + [67145] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4212), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1639), 1, + sym_comment, + [67164] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4214), 1, + anon_sym_SEMI, + STATE(1640), 1, + sym_comment, + STATE(1712), 1, aux_sym_declaration_repeat1, - [58069] = 4, + [67183] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_RBRACE, + ACTIONS(4216), 1, + anon_sym_COMMA, + STATE(1641), 2, + sym_comment, + aux_sym_initializer_list_repeat1, + [67200] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4219), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1642), 1, sym_comment, - ACTIONS(3844), 1, + [67219] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4221), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58082] = 4, - ACTIONS(3), 1, + STATE(1643), 1, sym_comment, - ACTIONS(2996), 1, - anon_sym_COMMA, - ACTIONS(2998), 1, - anon_sym_RBRACE, - STATE(1616), 1, - aux_sym_initializer_list_repeat1, - [58095] = 4, + [67238] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4223), 1, anon_sym_SEMI, - STATE(1573), 1, + STATE(1610), 1, aux_sym_declaration_repeat1, - [58108] = 4, - ACTIONS(3), 1, + STATE(1644), 1, sym_comment, - ACTIONS(2353), 1, - anon_sym_LBRACE, - ACTIONS(4225), 1, - sym_identifier, - STATE(783), 1, - sym_field_declaration_list, - [58121] = 4, + [67257] = 5, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4227), 1, - anon_sym_COMMA, - ACTIONS(4229), 1, anon_sym_RPAREN, - STATE(1621), 1, - aux_sym_preproc_params_repeat1, - [58134] = 4, - ACTIONS(3), 1, + STATE(1645), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(4231), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58147] = 2, + ACTIONS(4225), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [67274] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1646), 1, sym_comment, - ACTIONS(4233), 3, + ACTIONS(4229), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [58156] = 4, - ACTIONS(3), 1, + [67289] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4136), 1, + anon_sym_LPAREN2, + ACTIONS(4231), 1, + aux_sym_preproc_include_token2, + STATE(1647), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(4235), 1, - anon_sym_SEMI, - STATE(1646), 1, - aux_sym_declaration_repeat1, - [58169] = 4, + STATE(1918), 1, + sym_preproc_argument_list, + [67308] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(4233), 1, + anon_sym_SEMI, + STATE(1648), 1, sym_comment, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(4240), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58182] = 4, + STATE(2023), 1, + sym_attribute_specifier, + [67327] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4235), 1, anon_sym_COMMA, - ACTIONS(4242), 1, - anon_sym_SEMI, - STATE(1584), 1, - aux_sym_declaration_repeat1, - [58195] = 4, + ACTIONS(4238), 1, + anon_sym_RPAREN, + STATE(1649), 2, + sym_comment, + aux_sym__old_style_parameter_list_repeat1, + [67344] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4240), 1, + anon_sym_RPAREN, + ACTIONS(4242), 1, + anon_sym_COLON, + STATE(1633), 1, + sym_gnu_asm_clobber_list, + STATE(1650), 1, sym_comment, - ACTIONS(3179), 1, - anon_sym_COMMA, + [67363] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4198), 1, + anon_sym_COLON, ACTIONS(4244), 1, anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [58208] = 4, - ACTIONS(3), 1, + STATE(1651), 1, + sym_comment, + STATE(1952), 1, + sym_gnu_asm_goto_list, + [67382] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1586), 1, + aux_sym_char_literal_repeat1, + STATE(1652), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3971), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [67399] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, anon_sym_COMMA, ACTIONS(4246), 1, - anon_sym_SEMI, - STATE(1606), 1, - aux_sym_declaration_repeat1, - [58221] = 4, - ACTIONS(3), 1, + anon_sym_RBRACK_RBRACK, + STATE(1653), 1, sym_comment, - ACTIONS(3088), 1, - anon_sym_RBRACE, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(1597), 1, - aux_sym_initializer_list_repeat1, - [58234] = 4, + STATE(1684), 1, + aux_sym_attribute_declaration_repeat1, + [67418] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, + anon_sym_COMMA, + ACTIONS(4248), 1, + anon_sym_RBRACK_RBRACK, + STATE(1654), 1, sym_comment, - ACTIONS(4251), 1, - anon_sym_RPAREN, - ACTIONS(4253), 1, - anon_sym_COLON, - STATE(1858), 1, - sym_gnu_asm_goto_list, - [58247] = 4, + STATE(1655), 1, + aux_sym_attribute_declaration_repeat1, + [67437] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4250), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_RBRACK_RBRACK, + STATE(1655), 2, sym_comment, - ACTIONS(2353), 1, - anon_sym_LBRACE, - ACTIONS(4255), 1, - sym_identifier, - STATE(794), 1, - sym_field_declaration_list, - [58260] = 4, + aux_sym_attribute_declaration_repeat1, + [67454] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4255), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1656), 1, sym_comment, - ACTIONS(3844), 1, + [67473] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4257), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58273] = 4, - ACTIONS(3), 1, + STATE(1657), 1, sym_comment, - ACTIONS(3844), 1, + [67492] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4259), 1, anon_sym_SEMI, STATE(1619), 1, aux_sym_declaration_repeat1, - [58286] = 4, - ACTIONS(3), 1, + STATE(1658), 1, sym_comment, - ACTIONS(4217), 1, - anon_sym_COLON, - ACTIONS(4261), 1, - anon_sym_RPAREN, - STATE(1630), 1, - sym_gnu_asm_output_operand_list, - [58299] = 4, + [67511] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4261), 1, + anon_sym_SEMI, + STATE(1656), 1, + aux_sym_declaration_repeat1, + STATE(1659), 1, sym_comment, - ACTIONS(2353), 1, - anon_sym_LBRACE, - ACTIONS(4263), 1, - sym_identifier, - STATE(806), 1, - sym_field_declaration_list, - [58312] = 4, + [67530] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4263), 1, + anon_sym_COMMA, ACTIONS(4265), 1, - sym_identifier, - STATE(1120), 1, - sym_enumerator_list, - [58325] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + STATE(1660), 1, sym_comment, - ACTIONS(3844), 1, + STATE(1681), 1, + aux_sym_parameter_list_repeat1, + [67549] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4267), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58338] = 4, - ACTIONS(3), 1, + STATE(1661), 1, sym_comment, - ACTIONS(3844), 1, + [67568] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4269), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58351] = 4, - ACTIONS(3), 1, + STATE(1662), 1, sym_comment, - ACTIONS(3844), 1, + [67587] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4271), 1, anon_sym_SEMI, - STATE(1568), 1, + STATE(1657), 1, aux_sym_declaration_repeat1, - [58364] = 4, - ACTIONS(3), 1, + STATE(1663), 1, sym_comment, - ACTIONS(3844), 1, + [67606] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4273), 1, anon_sym_SEMI, - STATE(1620), 1, + STATE(1661), 1, aux_sym_declaration_repeat1, - [58377] = 4, - ACTIONS(3), 1, + STATE(1664), 1, sym_comment, - ACTIONS(3844), 1, + [67625] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4275), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58390] = 3, - ACTIONS(3), 1, + STATE(1665), 1, sym_comment, - ACTIONS(4277), 1, - anon_sym_EQ, - ACTIONS(3747), 2, + [67644] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [58401] = 3, - ACTIONS(3211), 1, + ACTIONS(4277), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1666), 1, sym_comment, - STATE(1544), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4279), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58412] = 4, - ACTIONS(3211), 1, + [67663] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4279), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1667), 1, sym_comment, + [67682] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, ACTIONS(4281), 1, - aux_sym_preproc_include_token2, - ACTIONS(4283), 1, - anon_sym_LPAREN2, - STATE(1878), 1, - sym_preproc_argument_list, - [58425] = 4, + anon_sym_SEMI, + STATE(1665), 1, + aux_sym_declaration_repeat1, + STATE(1668), 1, + sym_comment, + [67701] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4283), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1669), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, + [67720] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, ACTIONS(4285), 1, anon_sym_SEMI, - STATE(1986), 1, - sym_attribute_specifier, - [58438] = 4, - ACTIONS(3211), 1, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1670), 1, sym_comment, - ACTIONS(4283), 1, - anon_sym_LPAREN2, - ACTIONS(4287), 1, - aux_sym_preproc_include_token2, - STATE(1878), 1, - sym_preproc_argument_list, - [58451] = 4, + [67739] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4287), 1, + anon_sym_SEMI, + STATE(1666), 1, + aux_sym_declaration_repeat1, + STATE(1671), 1, sym_comment, - ACTIONS(4211), 1, + [67758] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, ACTIONS(4289), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58464] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + STATE(1672), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_RBRACE, - ACTIONS(4291), 1, + STATE(1696), 1, + aux_sym_declaration_repeat1, + [67777] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3016), 1, anon_sym_COMMA, - STATE(1597), 1, + ACTIONS(3018), 1, + anon_sym_RBRACE, + STATE(1673), 1, + sym_comment, + STATE(1679), 1, aux_sym_initializer_list_repeat1, - [58477] = 4, + [67796] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1674), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_COMMA, - ACTIONS(4293), 1, - anon_sym_RBRACK_RBRACK, - STATE(1643), 1, - aux_sym_attribute_declaration_repeat1, - [58490] = 4, + ACTIONS(4291), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [67811] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3012), 1, + anon_sym_COMMA, + ACTIONS(3022), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_argument_list_repeat1, + STATE(1675), 1, sym_comment, - ACTIONS(3844), 1, + [67830] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4295), 1, + ACTIONS(4293), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1669), 1, aux_sym_declaration_repeat1, - [58503] = 4, + STATE(1676), 1, + sym_comment, + [67849] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4295), 1, + anon_sym_EQ, + STATE(1677), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3674), 2, anon_sym_COMMA, - ACTIONS(4297), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58516] = 4, + anon_sym_RBRACE, + [67866] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4299), 1, + ACTIONS(4297), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58529] = 4, - ACTIONS(3), 1, + STATE(1678), 1, sym_comment, - ACTIONS(4227), 1, - anon_sym_COMMA, - ACTIONS(4301), 1, - anon_sym_RPAREN, - STATE(1660), 1, - aux_sym_preproc_params_repeat1, - [58542] = 4, + [67885] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1821), 1, + anon_sym_RBRACE, + ACTIONS(4299), 1, anon_sym_COMMA, - ACTIONS(4303), 1, - anon_sym_SEMI, - STATE(1627), 1, - aux_sym_declaration_repeat1, - [58555] = 2, + STATE(1641), 1, + aux_sym_initializer_list_repeat1, + STATE(1679), 1, + sym_comment, + [67904] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1680), 1, sym_comment, - ACTIONS(4305), 3, + ACTIONS(4301), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [58564] = 4, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4283), 1, - anon_sym_LPAREN2, - ACTIONS(4307), 1, - aux_sym_preproc_include_token2, - STATE(1878), 1, - sym_preproc_argument_list, - [58577] = 4, + [67919] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4303), 1, + anon_sym_COMMA, + ACTIONS(4306), 1, + anon_sym_RPAREN, + STATE(1681), 2, sym_comment, - ACTIONS(3844), 1, + aux_sym_parameter_list_repeat1, + [67936] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4309), 1, + ACTIONS(4308), 1, anon_sym_SEMI, - STATE(1565), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58590] = 4, - ACTIONS(3), 1, + STATE(1682), 1, sym_comment, - ACTIONS(3844), 1, + [67955] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4311), 1, + ACTIONS(4310), 1, anon_sym_SEMI, - STATE(1644), 1, + STATE(1639), 1, aux_sym_declaration_repeat1, - [58603] = 4, + STATE(1683), 1, + sym_comment, + [67974] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, + anon_sym_COMMA, + ACTIONS(4312), 1, + anon_sym_RBRACK_RBRACK, + STATE(1655), 1, + aux_sym_attribute_declaration_repeat1, + STATE(1684), 1, sym_comment, - ACTIONS(3844), 1, + [67993] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4313), 1, + ACTIONS(4314), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58616] = 4, - ACTIONS(3), 1, + STATE(1685), 1, sym_comment, - ACTIONS(3844), 1, + [68012] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4315), 1, + ACTIONS(4316), 1, anon_sym_SEMI, - STATE(1618), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58629] = 4, - ACTIONS(3), 1, + STATE(1686), 1, sym_comment, - ACTIONS(4317), 1, - anon_sym_RPAREN, - ACTIONS(4319), 1, - anon_sym_COLON, - STATE(1674), 1, - sym_gnu_asm_clobber_list, - [58642] = 4, + [68031] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1687), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(3006), 3, anon_sym_RPAREN, - ACTIONS(4323), 1, + anon_sym_SEMI, anon_sym_COLON, - STATE(1671), 1, - sym_gnu_asm_input_operand_list, - [58655] = 4, + [68046] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4325), 1, + ACTIONS(4318), 1, anon_sym_SEMI, - STATE(1655), 1, + STATE(1678), 1, aux_sym_declaration_repeat1, - [58668] = 2, - ACTIONS(3), 1, + STATE(1688), 1, sym_comment, - ACTIONS(4327), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58677] = 4, + [68065] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4329), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4320), 1, anon_sym_COMMA, - ACTIONS(4332), 1, + ACTIONS(4323), 1, anon_sym_RPAREN, - STATE(1633), 1, - aux_sym_parameter_list_repeat1, - [58690] = 2, - ACTIONS(3), 1, + STATE(1689), 2, sym_comment, - ACTIONS(4334), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58699] = 4, + aux_sym_preproc_params_repeat1, + [68082] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4339), 1, - anon_sym_RPAREN, - STATE(1635), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [58712] = 4, - ACTIONS(3), 1, + ACTIONS(4325), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1690), 1, sym_comment, - ACTIONS(3844), 1, + [68101] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4341), 1, + ACTIONS(4327), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58725] = 2, - ACTIONS(3), 1, + STATE(1691), 1, sym_comment, - ACTIONS(4343), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58734] = 3, + [68120] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, + anon_sym_COMMA, + ACTIONS(4329), 1, + anon_sym_RBRACK_RBRACK, + STATE(1655), 1, + aux_sym_attribute_declaration_repeat1, + STATE(1692), 1, sym_comment, - ACTIONS(4347), 1, - anon_sym_RPAREN, - ACTIONS(4345), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [58745] = 4, + [68139] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4349), 1, + ACTIONS(4331), 1, anon_sym_SEMI, - STATE(1667), 1, - aux_sym_declaration_repeat1, - [58758] = 4, - ACTIONS(3), 1, + STATE(1693), 1, sym_comment, - ACTIONS(2984), 1, - anon_sym_COMMA, - ACTIONS(2994), 1, - anon_sym_RPAREN, - STATE(1583), 1, - aux_sym_argument_list_repeat1, - [58771] = 2, + STATE(1720), 1, + aux_sym_declaration_repeat1, + [68158] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4351), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, + ACTIONS(4333), 1, anon_sym_SEMI, - anon_sym___attribute__, - [58780] = 4, - ACTIONS(3), 1, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1694), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_RBRACK_RBRACK, - STATE(1581), 1, - aux_sym_attribute_declaration_repeat1, - [58793] = 4, + [68177] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3293), 1, + anon_sym_RPAREN, + ACTIONS(4335), 1, anon_sym_COMMA, - ACTIONS(4355), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58806] = 4, - ACTIONS(3), 1, + STATE(1695), 2, sym_comment, - ACTIONS(3844), 1, + aux_sym_preproc_argument_list_repeat1, + [68194] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4357), 1, + ACTIONS(4338), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58819] = 4, - ACTIONS(3), 1, + STATE(1696), 1, sym_comment, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_RPAREN, - STATE(1629), 1, - sym_gnu_asm_input_operand_list, - [58832] = 4, + [68213] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4361), 1, + ACTIONS(4340), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1685), 1, aux_sym_declaration_repeat1, - [58845] = 4, + STATE(1697), 1, + sym_comment, + [68232] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3110), 1, + anon_sym_RPAREN, + ACTIONS(4342), 1, + anon_sym_COMMA, + STATE(1698), 2, sym_comment, - ACTIONS(4363), 1, + aux_sym_argument_list_repeat1, + [68249] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2365), 1, + anon_sym_LBRACE, + ACTIONS(4345), 1, + sym_identifier, + STATE(810), 1, + sym_field_declaration_list, + STATE(1699), 1, + sym_comment, + [68268] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4263), 1, anon_sym_COMMA, - ACTIONS(4365), 1, + ACTIONS(4347), 1, anon_sym_RPAREN, - STATE(1635), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [58858] = 4, - ACTIONS(3), 1, + STATE(1660), 1, + aux_sym_parameter_list_repeat1, + STATE(1700), 1, sym_comment, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4367), 1, - sym_identifier, - STATE(1713), 1, - sym_variadic_parameter, - [58871] = 2, + [68287] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4349), 1, + anon_sym_SEMI, + STATE(1690), 1, + aux_sym_declaration_repeat1, + STATE(1701), 1, sym_comment, - ACTIONS(4369), 3, + [68306] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3012), 1, anon_sym_COMMA, + ACTIONS(4351), 1, anon_sym_RPAREN, + STATE(1698), 1, + aux_sym_argument_list_repeat1, + STATE(1702), 1, + sym_comment, + [68325] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4180), 1, anon_sym_COLON, - [58880] = 3, - ACTIONS(3211), 1, + ACTIONS(4353), 1, + anon_sym_RPAREN, + STATE(1626), 1, + sym_gnu_asm_output_operand_list, + STATE(1703), 1, sym_comment, - STATE(1522), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4371), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58891] = 4, + [68344] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2743), 1, + anon_sym_LBRACE, + ACTIONS(4355), 1, + sym_identifier, + STATE(1147), 1, + sym_enumerator_list, + STATE(1704), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_COMMA, - ACTIONS(4373), 1, - anon_sym_RBRACK_RBRACK, - STATE(1615), 1, - aux_sym_attribute_declaration_repeat1, - [58904] = 4, + [68363] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4136), 1, + anon_sym_LPAREN2, + ACTIONS(4357), 1, + aux_sym_preproc_include_token2, + STATE(1705), 1, + sym_comment, + STATE(1918), 1, + sym_preproc_argument_list, + [68382] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1751), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4359), 1, + sym_identifier, + STATE(1706), 1, sym_comment, - ACTIONS(3844), 1, + STATE(1774), 1, + sym_variadic_parameter, + [68401] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4375), 1, + ACTIONS(4361), 1, anon_sym_SEMI, - STATE(1683), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58917] = 4, - ACTIONS(3), 1, + STATE(1707), 1, sym_comment, - ACTIONS(3844), 1, + [68420] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4377), 1, + ACTIONS(4363), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1642), 1, aux_sym_declaration_repeat1, - [58930] = 4, - ACTIONS(3211), 1, + STATE(1708), 1, sym_comment, - ACTIONS(4283), 1, + [68439] = 6, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4136), 1, anon_sym_LPAREN2, - ACTIONS(4379), 1, + ACTIONS(4365), 1, aux_sym_preproc_include_token2, - STATE(1878), 1, + STATE(1709), 1, + sym_comment, + STATE(1918), 1, sym_preproc_argument_list, - [58943] = 4, + [68458] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4381), 1, + ACTIONS(4367), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1620), 1, aux_sym_declaration_repeat1, - [58956] = 2, - ACTIONS(3), 1, + STATE(1710), 1, sym_comment, - ACTIONS(4383), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58965] = 4, + [68477] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4388), 1, - anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_generic_expression_repeat1, - [58978] = 4, - ACTIONS(3), 1, + ACTIONS(4369), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1711), 1, sym_comment, - ACTIONS(4390), 1, + [68496] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4392), 1, - anon_sym_RPAREN, - STATE(1574), 1, - aux_sym__old_style_parameter_list_repeat1, - [58991] = 4, + ACTIONS(4371), 1, + anon_sym_SEMI, + STATE(1619), 1, + aux_sym_declaration_repeat1, + STATE(1712), 1, + sym_comment, + [68515] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4184), 1, + anon_sym_COLON, + ACTIONS(4373), 1, + anon_sym_RPAREN, + STATE(1650), 1, + sym_gnu_asm_input_operand_list, + STATE(1713), 1, sym_comment, - ACTIONS(2984), 1, + [68534] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3012), 1, anon_sym_COMMA, - ACTIONS(2992), 1, + ACTIONS(3014), 1, anon_sym_RPAREN, - STATE(1679), 1, + STATE(1618), 1, aux_sym_argument_list_repeat1, - [59004] = 4, - ACTIONS(3), 1, + STATE(1714), 1, sym_comment, - ACTIONS(4394), 1, + [68553] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4130), 1, anon_sym_COMMA, - ACTIONS(4397), 1, + ACTIONS(4375), 1, anon_sym_RPAREN, - STATE(1660), 1, + STATE(1606), 1, aux_sym_preproc_params_repeat1, - [59017] = 4, - ACTIONS(3), 1, + STATE(1715), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(4399), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [59030] = 4, + [68572] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4401), 1, + ACTIONS(4377), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [59043] = 4, - ACTIONS(3), 1, + STATE(1716), 1, sym_comment, - ACTIONS(3223), 1, - anon_sym_RPAREN, - ACTIONS(4403), 1, - anon_sym_COMMA, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [59056] = 4, + [68591] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4242), 1, + anon_sym_COLON, + ACTIONS(4379), 1, + anon_sym_RPAREN, + STATE(1651), 1, + sym_gnu_asm_clobber_list, + STATE(1717), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, - ACTIONS(4406), 1, - anon_sym_SEMI, - STATE(1855), 1, - sym_attribute_specifier, - [59069] = 2, + [68610] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, + anon_sym_COMMA, + ACTIONS(4381), 1, + anon_sym_RBRACK_RBRACK, + STATE(1692), 1, + aux_sym_attribute_declaration_repeat1, + STATE(1718), 1, sym_comment, - ACTIONS(4408), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [59078] = 4, + [68629] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_RPAREN, - ACTIONS(4410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3187), 1, anon_sym_COMMA, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [59091] = 4, - ACTIONS(3), 1, + ACTIONS(4383), 1, + anon_sym_RPAREN, + STATE(1695), 1, + aux_sym_preproc_argument_list_repeat1, + STATE(1719), 1, sym_comment, - ACTIONS(3844), 1, + [68648] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4413), 1, + ACTIONS(4385), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [59104] = 4, - ACTIONS(3), 1, + STATE(1720), 1, sym_comment, - ACTIONS(3844), 1, + [68667] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3794), 1, anon_sym_COMMA, - ACTIONS(4415), 1, + ACTIONS(4387), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [59117] = 4, - ACTIONS(3), 1, + STATE(1721), 1, sym_comment, - ACTIONS(4363), 1, - anon_sym_COMMA, - ACTIONS(4417), 1, - anon_sym_RPAREN, - STATE(1647), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [59130] = 4, + [68686] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, + anon_sym___attribute__, + ACTIONS(4389), 1, + anon_sym_SEMI, + STATE(1722), 1, sym_comment, - ACTIONS(4179), 1, - anon_sym_COMMA, - ACTIONS(4419), 1, - anon_sym_RPAREN, - STATE(1569), 1, - aux_sym_parameter_list_repeat1, - [59143] = 4, + STATE(2007), 1, + sym_attribute_specifier, + [68705] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + STATE(1723), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_COLON, - ACTIONS(4421), 1, - anon_sym_RPAREN, - STATE(1598), 1, - sym_gnu_asm_clobber_list, - [59156] = 4, - ACTIONS(3), 1, + STATE(1947), 1, + sym_argument_list, + [68721] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4391), 1, + aux_sym_preproc_include_token2, + ACTIONS(4393), 1, + sym_preproc_arg, + STATE(1724), 1, sym_comment, - ACTIONS(2984), 1, - anon_sym_COMMA, - ACTIONS(4423), 1, - anon_sym_RPAREN, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [59169] = 4, - ACTIONS(3), 1, + [68737] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4395), 1, + aux_sym_preproc_include_token2, + ACTIONS(4397), 1, + sym_preproc_arg, + STATE(1725), 1, sym_comment, - ACTIONS(3179), 1, - anon_sym_COMMA, - ACTIONS(4425), 1, - anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [59182] = 4, + [68753] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(369), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym_compound_statement, + STATE(1726), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_COLON, - ACTIONS(4427), 1, - anon_sym_RPAREN, - STATE(1788), 1, - sym_gnu_asm_goto_list, - [59195] = 2, + [68769] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4399), 1, + sym_identifier, + STATE(1617), 1, + sym_attribute, + STATE(1727), 1, sym_comment, - ACTIONS(4429), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59204] = 2, + [68785] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(298), 1, + sym_compound_statement, + STATE(1728), 1, sym_comment, - ACTIONS(4431), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59213] = 4, + [68801] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(343), 1, + sym_parenthesized_expression, + STATE(1729), 1, sym_comment, - ACTIONS(3000), 1, - anon_sym_COMMA, - ACTIONS(4433), 1, - anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_generic_expression_repeat1, - [59226] = 4, + [68817] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, + anon_sym_LPAREN2, + STATE(1730), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym___attribute__, - ACTIONS(4435), 1, - anon_sym_SEMI, - STATE(1834), 1, - sym_attribute_specifier, - [59239] = 4, + STATE(1757), 1, + sym_parenthesized_expression, + [68833] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(362), 1, + sym_parenthesized_expression, + STATE(1731), 1, sym_comment, - ACTIONS(2984), 1, - anon_sym_COMMA, - ACTIONS(2990), 1, - anon_sym_RPAREN, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [59252] = 3, - ACTIONS(3211), 1, + [68849] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4405), 1, + aux_sym_preproc_include_token2, + ACTIONS(4407), 1, + sym_preproc_arg, + STATE(1732), 1, sym_comment, - STATE(1502), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4437), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59263] = 4, + [68865] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1733), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(4409), 2, anon_sym_COMMA, - ACTIONS(4439), 1, - anon_sym_SEMI, - STATE(1668), 1, - aux_sym_declaration_repeat1, - [59276] = 4, + anon_sym_RPAREN, + [68879] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(1562), 1, + sym_compound_statement, + STATE(1734), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(4441), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [59289] = 4, + [68895] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym_compound_statement, + STATE(1735), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(4443), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [59302] = 4, + [68911] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4411), 1, + sym_identifier, + ACTIONS(4413), 1, + anon_sym_LPAREN2, + STATE(1736), 1, sym_comment, - ACTIONS(3179), 1, - anon_sym_COMMA, - ACTIONS(4445), 1, - anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [59315] = 2, + [68927] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(251), 1, + sym_compound_statement, + STATE(1737), 1, sym_comment, - ACTIONS(2982), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [59324] = 4, + [68943] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1738), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_LBRACE, - ACTIONS(4447), 1, + ACTIONS(4415), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1120), 1, - sym_enumerator_list, - [59337] = 3, + [68957] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(1729), 1, - sym_parenthesized_expression, - [59347] = 3, - ACTIONS(3), 1, + STATE(1739), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_compound_statement, - [59357] = 3, + STATE(1795), 1, + sym_parenthesized_expression, + [68973] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(397), 1, + STATE(1740), 1, + sym_comment, + STATE(1799), 1, sym_parenthesized_expression, - [59367] = 3, + [68989] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(362), 1, + STATE(1741), 1, + sym_comment, + STATE(1830), 1, sym_parenthesized_expression, - [59377] = 3, + [69005] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + STATE(1742), 1, sym_comment, - ACTIONS(4453), 1, - sym_identifier, - STATE(1642), 1, - sym_attribute, - [59387] = 3, + STATE(1820), 1, + sym_argument_list, + [69021] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym_compound_statement, + STATE(1743), 1, sym_comment, - ACTIONS(4451), 1, - anon_sym_LPAREN2, - STATE(389), 1, - sym_parenthesized_expression, - [59397] = 2, + [69037] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1744), 1, sym_comment, - ACTIONS(3050), 2, + ACTIONS(3883), 2, anon_sym_COMMA, anon_sym_SEMI, - [59405] = 3, + [69051] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(1719), 1, - sym_parenthesized_expression, - [59415] = 3, - ACTIONS(3), 1, + STATE(1745), 1, sym_comment, - ACTIONS(4451), 1, - anon_sym_LPAREN2, - STATE(361), 1, + STATE(1785), 1, sym_parenthesized_expression, - [59425] = 3, + [69067] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, anon_sym_LBRACE, - STATE(304), 1, + STATE(1544), 1, sym_compound_statement, - [59435] = 3, - ACTIONS(3), 1, + STATE(1746), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(276), 1, - sym_compound_statement, - [59445] = 2, + [69083] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1747), 1, sym_comment, - ACTIONS(3955), 2, + ACTIONS(3052), 2, anon_sym_COMMA, anon_sym_SEMI, - [59453] = 3, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4455), 1, + [69097] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4417), 1, aux_sym_preproc_include_token2, - ACTIONS(4457), 1, + ACTIONS(4419), 1, sym_preproc_arg, - [59463] = 3, - ACTIONS(3), 1, + STATE(1748), 1, sym_comment, - ACTIONS(2249), 1, + [69113] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(1915), 1, - sym_argument_list, - [59473] = 3, + STATE(1737), 1, + sym_parenthesized_expression, + STATE(1749), 1, + sym_comment, + [69129] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, + anon_sym_LPAREN2, + STATE(1750), 1, sym_comment, - ACTIONS(41), 1, + STATE(2055), 1, + sym_parenthesized_expression, + [69145] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, anon_sym_LBRACE, - STATE(223), 1, + STATE(1561), 1, sym_compound_statement, - [59483] = 3, - ACTIONS(3211), 1, + STATE(1751), 1, sym_comment, - ACTIONS(4459), 1, + [69161] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(314), 1, + sym_parenthesized_expression, + STATE(1752), 1, + sym_comment, + [69177] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4421), 1, aux_sym_preproc_include_token2, - ACTIONS(4461), 1, + ACTIONS(4423), 1, sym_preproc_arg, - [59493] = 3, + STATE(1753), 1, + sym_comment, + [69193] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, + anon_sym_LPAREN2, + STATE(1754), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1561), 1, - sym_compound_statement, - [59503] = 2, + STATE(1790), 1, + sym_parenthesized_expression, + [69209] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(357), 1, + sym_parenthesized_expression, + STATE(1755), 1, sym_comment, - ACTIONS(3056), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59511] = 3, + [69225] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4399), 1, + sym_identifier, + STATE(1653), 1, + sym_attribute, + STATE(1756), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - STATE(1979), 1, - sym_argument_list, - [59521] = 3, + [69241] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_compound_statement, + STATE(1757), 1, sym_comment, - ACTIONS(4449), 1, + [69257] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, anon_sym_LPAREN2, - STATE(1720), 1, + STATE(410), 1, sym_parenthesized_expression, - [59531] = 2, + STATE(1758), 1, + sym_comment, + [69273] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4425), 1, + sym_identifier, + ACTIONS(4427), 1, + anon_sym_LPAREN2, + STATE(1759), 1, sym_comment, - ACTIONS(4397), 2, - anon_sym_COMMA, + [69289] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, anon_sym_RPAREN, - [59539] = 3, - ACTIONS(3211), 1, + STATE(1760), 1, + sym_comment, + [69305] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(404), 1, + sym_parenthesized_expression, + STATE(1761), 1, + sym_comment, + [69321] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, + anon_sym_LPAREN2, + STATE(1728), 1, + sym_parenthesized_expression, + STATE(1762), 1, sym_comment, - ACTIONS(4463), 1, + [69337] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, aux_sym_preproc_include_token2, - ACTIONS(4465), 1, + ACTIONS(4435), 1, sym_preproc_arg, - [59549] = 3, + STATE(1763), 1, + sym_comment, + [69353] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4437), 1, + anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_RBRACE, + STATE(1764), 1, + sym_comment, + [69369] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1765), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(3088), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(391), 1, + STATE(1766), 1, + sym_comment, + STATE(1813), 1, sym_parenthesized_expression, - [59559] = 3, + [69399] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1767), 1, sym_comment, - ACTIONS(4467), 1, - sym_identifier, - ACTIONS(4469), 1, - anon_sym_LPAREN2, - [59569] = 3, - ACTIONS(3211), 1, + ACTIONS(3090), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69413] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1768), 1, sym_comment, - ACTIONS(4471), 1, + ACTIONS(3092), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69427] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4441), 1, aux_sym_preproc_include_token2, - ACTIONS(4473), 1, + ACTIONS(4443), 1, sym_preproc_arg, - [59579] = 2, + STATE(1769), 1, + sym_comment, + [69443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(369), 1, + anon_sym_LBRACE, + STATE(289), 1, + sym_compound_statement, + STATE(1770), 1, + sym_comment, + [69459] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1771), 1, sym_comment, - ACTIONS(3965), 2, + ACTIONS(4445), 2, anon_sym_COMMA, anon_sym_SEMI, - [59587] = 2, + [69473] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(365), 1, + sym_parenthesized_expression, + STATE(1772), 1, sym_comment, - ACTIONS(4194), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59595] = 2, + [69489] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1773), 1, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4447), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59603] = 2, + [69503] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1774), 1, sym_comment, - ACTIONS(4332), 2, + ACTIONS(4238), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59611] = 3, + [69517] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(1998), 1, + STATE(1775), 1, + sym_comment, + STATE(1804), 1, sym_parenthesized_expression, - [59621] = 3, + [69533] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, anon_sym_LPAREN2, - STATE(1701), 1, + STATE(372), 1, sym_parenthesized_expression, - [59631] = 3, - ACTIONS(3211), 1, + STATE(1776), 1, sym_comment, - ACTIONS(4477), 1, - aux_sym_preproc_include_token2, - ACTIONS(4479), 1, - sym_preproc_arg, - [59641] = 3, + [69549] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(371), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, anon_sym_LBRACE, - STATE(246), 1, + STATE(1571), 1, sym_compound_statement, - [59651] = 3, + STATE(1777), 1, + sym_comment, + [69565] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1778), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(281), 1, - sym_compound_statement, - [59661] = 3, + ACTIONS(4450), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [69579] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4399), 1, + sym_identifier, + STATE(1779), 1, sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - STATE(223), 1, - sym_compound_statement, - [59671] = 3, - ACTIONS(3211), 1, + STATE(1789), 1, + sym_attribute, + [69595] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1780), 1, + sym_comment, + ACTIONS(4452), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69609] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(374), 1, + sym_parenthesized_expression, + STATE(1781), 1, sym_comment, - ACTIONS(4481), 1, + [69625] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4454), 1, aux_sym_preproc_include_token2, - ACTIONS(4483), 1, + ACTIONS(4456), 1, sym_preproc_arg, - [59681] = 3, + STATE(1782), 1, + sym_comment, + [69641] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, + anon_sym_LPAREN2, + STATE(1726), 1, + sym_parenthesized_expression, + STATE(1783), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1545), 1, - sym_compound_statement, - [59691] = 2, + [69657] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4401), 1, + anon_sym_LPAREN2, + STATE(373), 1, + sym_parenthesized_expression, + STATE(1784), 1, sym_comment, - ACTIONS(4485), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59699] = 2, + [69673] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(503), 1, + anon_sym_LBRACE, + STATE(175), 1, + sym_compound_statement, + STATE(1785), 1, sym_comment, - ACTIONS(4487), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [59707] = 3, + [69689] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4399), 1, + sym_identifier, + STATE(1718), 1, + sym_attribute, + STATE(1786), 1, sym_comment, - ACTIONS(4489), 1, - anon_sym_COMMA, - ACTIONS(4491), 1, - anon_sym_RBRACE, - [59717] = 3, - ACTIONS(3211), 1, + [69705] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4458), 1, + aux_sym_preproc_include_token2, + ACTIONS(4460), 1, + sym_preproc_arg, + STATE(1787), 1, sym_comment, - ACTIONS(4493), 1, + [69721] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4462), 1, aux_sym_preproc_include_token2, - ACTIONS(4495), 1, + ACTIONS(4464), 1, sym_preproc_arg, - [59727] = 2, + STATE(1788), 1, + sym_comment, + [69737] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1789), 1, sym_comment, - ACTIONS(4497), 2, + ACTIONS(4253), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [59735] = 3, + [69751] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_compound_statement, + STATE(1790), 1, + sym_comment, + [69767] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1791), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(3903), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [69781] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(43), 1, anon_sym_LBRACE, - STATE(101), 1, + STATE(289), 1, sym_compound_statement, - [59745] = 3, - ACTIONS(3211), 1, + STATE(1792), 1, sym_comment, - ACTIONS(4499), 1, + [69797] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4466), 1, aux_sym_preproc_include_token2, - ACTIONS(4501), 1, + ACTIONS(4468), 1, sym_preproc_arg, - [59755] = 3, - ACTIONS(3), 1, + STATE(1793), 1, sym_comment, - ACTIONS(4453), 1, - sym_identifier, - STATE(1758), 1, - sym_attribute, - [59765] = 3, - ACTIONS(3), 1, + [69813] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4470), 1, + aux_sym_preproc_include_token2, + ACTIONS(4472), 1, + sym_preproc_arg, + STATE(1794), 1, sym_comment, - ACTIONS(423), 1, + [69829] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(503), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(297), 1, sym_compound_statement, - [59775] = 3, - ACTIONS(3), 1, + STATE(1795), 1, sym_comment, - ACTIONS(4453), 1, - sym_identifier, - STATE(1617), 1, - sym_attribute, - [59785] = 3, - ACTIONS(3), 1, + [69845] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + aux_sym_preproc_include_token2, + ACTIONS(4476), 1, + sym_preproc_arg, + STATE(1796), 1, sym_comment, - ACTIONS(4451), 1, - anon_sym_LPAREN2, - STATE(311), 1, - sym_parenthesized_expression, - [59795] = 3, + [69861] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4403), 1, anon_sym_LPAREN2, - STATE(312), 1, - sym_parenthesized_expression, - [59805] = 3, - ACTIONS(3), 1, + STATE(1797), 1, sym_comment, - ACTIONS(4503), 1, - sym_identifier, - ACTIONS(4505), 1, - anon_sym_LPAREN2, - [59815] = 3, + STATE(1982), 1, + sym_parenthesized_expression, + [69877] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(503), 1, anon_sym_LBRACE, - STATE(1541), 1, + STATE(239), 1, sym_compound_statement, - [59825] = 3, - ACTIONS(3), 1, + STATE(1798), 1, sym_comment, - ACTIONS(423), 1, + [69893] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(131), 1, anon_sym_LBRACE, - STATE(170), 1, + STATE(89), 1, sym_compound_statement, - [59835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3520), 1, - anon_sym_RBRACE, - ACTIONS(4489), 1, - anon_sym_COMMA, - [59845] = 3, - ACTIONS(3), 1, + STATE(1799), 1, sym_comment, - ACTIONS(4451), 1, - anon_sym_LPAREN2, - STATE(351), 1, - sym_parenthesized_expression, - [59855] = 3, + [69909] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1800), 1, sym_comment, - ACTIONS(4451), 1, - anon_sym_LPAREN2, - STATE(352), 1, - sym_parenthesized_expression, - [59865] = 3, - ACTIONS(3), 1, + ACTIONS(3110), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69923] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4478), 1, + aux_sym_preproc_include_token2, + ACTIONS(4480), 1, + sym_preproc_arg, + STATE(1801), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1721), 1, - sym_parenthesized_expression, - [59875] = 3, - ACTIONS(3211), 1, + [69939] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4482), 1, + aux_sym_preproc_include_token2, + ACTIONS(4484), 1, + sym_preproc_arg, + STATE(1802), 1, sym_comment, - ACTIONS(4507), 1, + [69955] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4486), 1, aux_sym_preproc_include_token2, - ACTIONS(4509), 1, + ACTIONS(4488), 1, sym_preproc_arg, - [59885] = 3, - ACTIONS(3), 1, + STATE(1803), 1, sym_comment, - ACTIONS(423), 1, + [69971] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(369), 1, anon_sym_LBRACE, - STATE(208), 1, + STATE(298), 1, sym_compound_statement, - [59895] = 3, + STATE(1804), 1, + sym_comment, + [69987] = 5, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3480), 1, + anon_sym_RBRACE, + ACTIONS(4437), 1, + anon_sym_COMMA, + STATE(1805), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1847), 1, - sym_parenthesized_expression, - [59905] = 3, - ACTIONS(3211), 1, + [70003] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1806), 1, sym_comment, - ACTIONS(4511), 1, + ACTIONS(4323), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70017] = 5, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4490), 1, aux_sym_preproc_include_token2, - ACTIONS(4513), 1, + ACTIONS(4492), 1, sym_preproc_arg, - [59915] = 3, - ACTIONS(3211), 1, + STATE(1807), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_preproc_include_token2, - ACTIONS(4517), 1, - sym_preproc_arg, - [59925] = 2, + [70033] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1808), 1, sym_comment, - ACTIONS(3066), 2, + ACTIONS(4306), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [59933] = 2, + anon_sym_RPAREN, + [70047] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1809), 1, sym_comment, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [59941] = 3, + ACTIONS(4494), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [70061] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(131), 1, anon_sym_LBRACE, - STATE(171), 1, + STATE(82), 1, sym_compound_statement, - [59951] = 2, - ACTIONS(3), 1, + STATE(1810), 1, sym_comment, - ACTIONS(3088), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [59959] = 3, + [70077] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4496), 1, + aux_sym_preproc_if_token2, + STATE(1811), 1, sym_comment, - ACTIONS(4521), 1, - sym_identifier, - ACTIONS(4523), 1, - anon_sym_RPAREN, - [59969] = 2, + [70090] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4498), 1, + aux_sym_preproc_if_token2, + STATE(1812), 1, sym_comment, - ACTIONS(3104), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [59977] = 3, + [70103] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4500), 1, + anon_sym_SEMI, + STATE(1813), 1, sym_comment, - ACTIONS(4451), 1, - anon_sym_LPAREN2, - STATE(396), 1, - sym_parenthesized_expression, - [59987] = 3, - ACTIONS(3211), 1, + [70116] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4502), 1, + sym_identifier, + STATE(1814), 1, sym_comment, - ACTIONS(4525), 1, + [70129] = 4, + ACTIONS(2974), 1, aux_sym_preproc_include_token2, - ACTIONS(4527), 1, - sym_preproc_arg, - [59997] = 3, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1815), 1, + sym_comment, + [70142] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4504), 1, + anon_sym_RPAREN, + STATE(1816), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1696), 1, - sym_parenthesized_expression, - [60007] = 3, - ACTIONS(3211), 1, + [70155] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4506), 1, + aux_sym_preproc_if_token2, + STATE(1817), 1, sym_comment, - ACTIONS(4529), 1, - aux_sym_preproc_include_token2, - ACTIONS(4531), 1, - sym_preproc_arg, - [60017] = 2, + [70168] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4508), 1, + aux_sym_preproc_if_token2, + STATE(1818), 1, sym_comment, - ACTIONS(4240), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [60025] = 3, + [70181] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4510), 1, + aux_sym_preproc_if_token2, + STATE(1819), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1923), 1, - sym_parenthesized_expression, - [60035] = 3, + [70194] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4512), 1, + anon_sym_RPAREN, + STATE(1820), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(88), 1, - sym_compound_statement, - [60045] = 3, - ACTIONS(3211), 1, + [70207] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4514), 1, + sym_primitive_type, + STATE(1821), 1, sym_comment, - ACTIONS(4533), 1, - aux_sym_preproc_include_token2, - ACTIONS(4535), 1, - sym_preproc_arg, - [60055] = 3, - ACTIONS(3211), 1, + [70220] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4516), 1, + anon_sym_RPAREN, + STATE(1822), 1, sym_comment, - ACTIONS(4537), 1, + [70233] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4518), 1, aux_sym_preproc_include_token2, - ACTIONS(4539), 1, - sym_preproc_arg, - [60065] = 3, - ACTIONS(3211), 1, + STATE(1823), 1, sym_comment, - ACTIONS(4541), 1, - aux_sym_preproc_include_token2, - ACTIONS(4543), 1, - sym_preproc_arg, - [60075] = 3, + [70246] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4520), 1, + aux_sym_preproc_if_token2, + STATE(1824), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1744), 1, - sym_parenthesized_expression, - [60085] = 3, + [70259] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3480), 1, + anon_sym_RBRACE, + STATE(1825), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1507), 1, - sym_compound_statement, - [60095] = 2, + [70272] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4522), 1, + aux_sym_preproc_if_token2, + STATE(1826), 1, sym_comment, - ACTIONS(4545), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [60103] = 3, + [70285] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4524), 1, + aux_sym_preproc_if_token2, + STATE(1827), 1, sym_comment, - ACTIONS(4453), 1, - sym_identifier, - STATE(1651), 1, - sym_attribute, - [60113] = 3, + [70298] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4526), 1, + aux_sym_preproc_if_token2, + STATE(1828), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1781), 1, - sym_parenthesized_expression, - [60123] = 3, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4547), 1, - aux_sym_preproc_include_token2, - ACTIONS(4549), 1, - sym_preproc_arg, - [60133] = 3, + [70311] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4528), 1, + aux_sym_preproc_if_token2, + STATE(1829), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(76), 1, - sym_compound_statement, - [60143] = 3, + [70324] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4530), 1, + anon_sym_SEMI, + STATE(1830), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1760), 1, - sym_parenthesized_expression, - [60153] = 3, + [70337] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4532), 1, + anon_sym_RPAREN, + STATE(1831), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_LPAREN2, - STATE(1732), 1, - sym_parenthesized_expression, - [60163] = 2, + [70350] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4534), 1, + anon_sym_RPAREN, + STATE(1832), 1, sym_comment, - ACTIONS(4551), 2, - anon_sym_COMMA, + [70363] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4536), 1, anon_sym_RPAREN, - [60171] = 3, + STATE(1833), 1, + sym_comment, + [70376] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4538), 1, + aux_sym_preproc_if_token2, + STATE(1834), 1, sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_compound_statement, - [60181] = 2, + [70389] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4540), 1, + sym_identifier, + STATE(1835), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_SEMI, - [60188] = 2, + [70402] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4542), 1, + aux_sym_preproc_if_token2, + STATE(1836), 1, sym_comment, - ACTIONS(4556), 1, + [70415] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4544), 1, + anon_sym_COLON, + STATE(1837), 1, + sym_comment, + [70428] = 4, + ACTIONS(2978), 1, + aux_sym_preproc_include_token2, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1838), 1, + sym_comment, + [70441] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4546), 1, + aux_sym_preproc_if_token2, + STATE(1839), 1, + sym_comment, + [70454] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4548), 1, + aux_sym_preproc_include_token2, + STATE(1840), 1, + sym_comment, + [70467] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4550), 1, + sym_identifier, + STATE(1841), 1, + sym_comment, + [70480] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4552), 1, aux_sym_preproc_if_token2, - [60195] = 2, + STATE(1842), 1, + sym_comment, + [70493] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4554), 1, + aux_sym_preproc_include_token2, + STATE(1843), 1, + sym_comment, + [70506] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4556), 1, + anon_sym_RPAREN, + STATE(1844), 1, sym_comment, + [70519] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4558), 1, anon_sym_RBRACE, - [60202] = 2, - ACTIONS(3), 1, + STATE(1845), 1, sym_comment, + [70532] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4560), 1, - anon_sym_LPAREN2, - [60209] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1846), 1, sym_comment, + [70545] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4562), 1, - aux_sym_preproc_if_token2, - [60216] = 2, + sym_identifier, + STATE(1847), 1, + sym_comment, + [70558] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3030), 1, + anon_sym_COLON, + STATE(1848), 1, sym_comment, + [70571] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4564), 1, - aux_sym_preproc_if_token2, - [60223] = 2, + aux_sym_preproc_include_token2, + STATE(1849), 1, + sym_comment, + [70584] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3018), 1, + anon_sym_RBRACE, + STATE(1850), 1, sym_comment, + [70597] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4566), 1, - anon_sym_SEMI, - [60230] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1851), 1, sym_comment, + [70610] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4568), 1, anon_sym_RPAREN, - [60237] = 2, - ACTIONS(3211), 1, + STATE(1852), 1, sym_comment, - ACTIONS(4570), 1, - aux_sym_preproc_include_token2, - [60244] = 2, + [70623] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4570), 1, + anon_sym_COLON, + STATE(1853), 1, sym_comment, + [70636] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4572), 1, aux_sym_preproc_if_token2, - [60251] = 2, - ACTIONS(3), 1, + STATE(1854), 1, sym_comment, + [70649] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4574), 1, - aux_sym_preproc_if_token2, - [60258] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1855), 1, sym_comment, - ACTIONS(3100), 1, - anon_sym_SEMI, - [60265] = 2, + [70662] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4576), 1, - aux_sym_preproc_if_token2, - [60272] = 2, - ACTIONS(3), 1, + sym_identifier, + STATE(1856), 1, sym_comment, + [70675] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4578), 1, - anon_sym_RPAREN, - [60279] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1857), 1, sym_comment, + [70688] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4580), 1, aux_sym_preproc_if_token2, - [60286] = 2, - ACTIONS(3), 1, + STATE(1858), 1, sym_comment, - ACTIONS(3074), 1, - anon_sym_RPAREN, - [60293] = 2, + [70701] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4582), 1, - aux_sym_preproc_if_token2, - [60300] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + STATE(1859), 1, sym_comment, + [70714] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4584), 1, + aux_sym_preproc_include_token2, + STATE(1860), 1, + sym_comment, + [70727] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4586), 1, sym_identifier, - [60307] = 2, + STATE(1861), 1, + sym_comment, + [70740] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3760), 1, + anon_sym_COMMA, + STATE(1862), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_COLON, - [60314] = 2, + [70753] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3042), 1, + anon_sym_SEMI, + STATE(1863), 1, sym_comment, + [70766] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4588), 1, aux_sym_preproc_if_token2, - [60321] = 2, - ACTIONS(3211), 1, + STATE(1864), 1, sym_comment, + [70779] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4590), 1, - aux_sym_preproc_include_token2, - [60328] = 2, - ACTIONS(3211), 1, + sym_identifier, + STATE(1865), 1, sym_comment, + [70792] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4592), 1, aux_sym_preproc_include_token2, - [60335] = 2, - ACTIONS(3), 1, + STATE(1866), 1, sym_comment, - ACTIONS(3054), 1, - anon_sym_RPAREN, - [60342] = 2, + [70805] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4594), 1, - aux_sym_preproc_if_token2, - [60349] = 2, + anon_sym_RPAREN, + STATE(1867), 1, + sym_comment, + [70818] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4437), 1, + anon_sym_COMMA, + STATE(1868), 1, sym_comment, + [70831] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4596), 1, anon_sym_SEMI, - [60356] = 2, - ACTIONS(3211), 1, + STATE(1869), 1, sym_comment, - ACTIONS(4598), 1, - aux_sym_preproc_include_token2, - [60363] = 2, + [70844] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, anon_sym_SEMI, - [60370] = 2, + STATE(1870), 1, + sym_comment, + [70857] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3028), 1, + anon_sym_SEMI, + STATE(1871), 1, sym_comment, - ACTIONS(4600), 1, - anon_sym_RPAREN, - [60377] = 2, + [70870] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4600), 1, + anon_sym_RBRACE, + STATE(1872), 1, sym_comment, + [70883] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4602), 1, - anon_sym_STAR, - [60384] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1873), 1, sym_comment, - ACTIONS(3036), 1, - anon_sym_RPAREN, - [60391] = 2, - ACTIONS(3), 1, + [70896] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + aux_sym_preproc_include_token2, + STATE(1874), 1, sym_comment, - ACTIONS(3076), 1, - anon_sym_SEMI, - [60398] = 2, + [70909] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4604), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3080), 1, anon_sym_SEMI, - [60405] = 2, - ACTIONS(3211), 1, + STATE(1875), 1, sym_comment, + [70922] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4606), 1, aux_sym_preproc_include_token2, - [60412] = 2, - ACTIONS(3), 1, + STATE(1876), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_SEMI, - [60419] = 2, + [70935] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4608), 1, - anon_sym_RPAREN, - [60426] = 2, - ACTIONS(3211), 1, + sym_identifier, + STATE(1877), 1, sym_comment, - ACTIONS(4610), 1, - aux_sym_preproc_include_token2, - [60433] = 2, + [70948] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4610), 1, + sym_identifier, + STATE(1878), 1, sym_comment, + [70961] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4612), 1, - anon_sym_LPAREN2, - [60440] = 2, - ACTIONS(3211), 1, + sym_identifier, + STATE(1879), 1, sym_comment, - ACTIONS(4287), 1, - aux_sym_preproc_include_token2, - [60447] = 2, + [70974] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4614), 1, - anon_sym_LPAREN2, - [60454] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + STATE(1880), 1, sym_comment, + [70987] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4616), 1, anon_sym_RPAREN, - [60461] = 2, - ACTIONS(3), 1, + STATE(1881), 1, sym_comment, + [71000] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4618), 1, - anon_sym_COLON, - [60468] = 2, - ACTIONS(3211), 1, + anon_sym_RPAREN, + STATE(1882), 1, sym_comment, - ACTIONS(4620), 1, - aux_sym_preproc_include_token2, - [60475] = 2, + [71013] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4620), 1, + anon_sym_RPAREN, + STATE(1883), 1, sym_comment, + [71026] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4622), 1, - anon_sym_STAR, - [60482] = 2, + anon_sym_COMMA, + STATE(1884), 1, + sym_comment, + [71039] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3044), 1, + anon_sym_SEMI, + STATE(1885), 1, + sym_comment, + [71052] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3082), 1, + anon_sym_SEMI, + STATE(1886), 1, sym_comment, + [71065] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4624), 1, sym_identifier, - [60489] = 2, - ACTIONS(3211), 1, + STATE(1887), 1, sym_comment, - ACTIONS(4626), 1, - aux_sym_preproc_include_token2, - [60496] = 2, + [71078] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4626), 1, + anon_sym_SEMI, + STATE(1888), 1, sym_comment, + [71091] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4628), 1, anon_sym_SEMI, - [60503] = 2, - ACTIONS(3), 1, + STATE(1889), 1, sym_comment, - ACTIONS(4630), 1, - anon_sym_RBRACK, - [60510] = 2, + [71104] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4630), 1, + anon_sym_RPAREN, + STATE(1890), 1, sym_comment, - ACTIONS(4632), 1, - anon_sym_SEMI, - [60517] = 2, + [71117] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4632), 1, + sym_identifier, + STATE(1891), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_LPAREN2, - [60524] = 2, + [71130] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4634), 1, + anon_sym_SEMI, + STATE(1892), 1, sym_comment, + [71143] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4636), 1, - anon_sym_COLON, - [60531] = 2, - ACTIONS(3211), 1, + anon_sym_RBRACE, + STATE(1893), 1, sym_comment, + [71156] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4638), 1, - aux_sym_preproc_include_token2, - [60538] = 2, + anon_sym_RPAREN, + STATE(1894), 1, + sym_comment, + [71169] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3100), 1, + anon_sym_RPAREN, + STATE(1895), 1, sym_comment, - ACTIONS(4640), 1, - anon_sym_LPAREN2, - [60545] = 2, + [71182] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4640), 1, + anon_sym_STAR, + STATE(1896), 1, sym_comment, - ACTIONS(3070), 1, + [71195] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3098), 1, anon_sym_RPAREN, - [60552] = 2, + STATE(1897), 1, + sym_comment, + [71208] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3096), 1, + anon_sym_RPAREN, + STATE(1898), 1, sym_comment, - ACTIONS(4642), 1, - aux_sym_preproc_if_token2, - [60559] = 2, + [71221] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4642), 1, + anon_sym_RBRACK, + STATE(1899), 1, sym_comment, + [71234] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4644), 1, - aux_sym_preproc_if_token2, - [60566] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1900), 1, sym_comment, - ACTIONS(4646), 1, - aux_sym_preproc_if_token2, - [60573] = 2, + [71247] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4646), 1, + sym_identifier, + STATE(1901), 1, sym_comment, + [71260] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4648), 1, - aux_sym_preproc_if_token2, - [60580] = 2, - ACTIONS(3211), 1, + sym_identifier, + STATE(1902), 1, sym_comment, + [71273] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4650), 1, - aux_sym_preproc_include_token2, - [60587] = 2, - ACTIONS(3211), 1, + anon_sym_LPAREN2, + STATE(1903), 1, sym_comment, - ACTIONS(4652), 1, - aux_sym_preproc_include_token2, - [60594] = 2, + [71286] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + aux_sym_preproc_if_token2, + STATE(1904), 1, sym_comment, + [71299] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4654), 1, - anon_sym_SEMI, - [60601] = 2, - ACTIONS(3211), 1, + anon_sym_RPAREN, + STATE(1905), 1, sym_comment, - ACTIONS(4656), 1, - aux_sym_preproc_include_token2, - [60608] = 2, + [71312] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4656), 1, + sym_identifier, + STATE(1906), 1, sym_comment, + [71325] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4658), 1, - ts_builtin_sym_end, - [60615] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1907), 1, sym_comment, - ACTIONS(4660), 1, - sym_identifier, - [60622] = 2, + [71338] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4357), 1, + aux_sym_preproc_include_token2, + STATE(1908), 1, + sym_comment, + [71351] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4660), 1, + aux_sym_preproc_if_token2, + STATE(1909), 1, sym_comment, + [71364] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4662), 1, sym_identifier, - [60629] = 2, - ACTIONS(3), 1, + STATE(1910), 1, sym_comment, + [71377] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4664), 1, anon_sym_COLON, - [60636] = 2, - ACTIONS(3), 1, + STATE(1911), 1, sym_comment, + [71390] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4666), 1, aux_sym_preproc_if_token2, - [60643] = 2, - ACTIONS(3), 1, + STATE(1912), 1, sym_comment, - ACTIONS(4668), 1, - aux_sym_preproc_if_token2, - [60650] = 2, + [71403] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + sym_identifier, + STATE(1913), 1, sym_comment, - ACTIONS(4670), 1, - anon_sym_COLON, - [60657] = 2, + [71416] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4670), 1, + anon_sym_SEMI, + STATE(1914), 1, sym_comment, - ACTIONS(4672), 1, - aux_sym_preproc_if_token2, - [60664] = 2, + [71429] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3072), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, anon_sym_RPAREN, - [60671] = 2, - ACTIONS(3), 1, + STATE(1915), 1, sym_comment, + [71442] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4674), 1, - anon_sym_SEMI, - [60678] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1916), 1, + sym_comment, + [71455] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4231), 1, + aux_sym_preproc_include_token2, + STATE(1917), 1, + sym_comment, + [71468] = 4, + ACTIONS(2996), 1, + aux_sym_preproc_include_token2, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1918), 1, sym_comment, + [71481] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4676), 1, - sym_identifier, - [60685] = 2, - ACTIONS(3), 1, + aux_sym_comment_token2, + STATE(1919), 1, sym_comment, - ACTIONS(4678), 1, - anon_sym_SEMI, - [60692] = 2, + [71494] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4678), 1, + sym_identifier, + STATE(1920), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_SEMI, - [60699] = 2, + [71507] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4680), 1, + sym_identifier, + STATE(1921), 1, sym_comment, - ACTIONS(4682), 1, - anon_sym_LPAREN2, - [60706] = 2, + [71520] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4682), 1, + anon_sym_SEMI, + STATE(1922), 1, sym_comment, + [71533] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4684), 1, anon_sym_SEMI, - [60713] = 2, - ACTIONS(3), 1, + STATE(1923), 1, sym_comment, - ACTIONS(4686), 1, - anon_sym_SEMI, - [60720] = 2, + [71546] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4686), 1, + aux_sym_preproc_if_token2, + STATE(1924), 1, sym_comment, + [71559] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4688), 1, sym_identifier, - [60727] = 2, - ACTIONS(3), 1, + STATE(1925), 1, sym_comment, - ACTIONS(4690), 1, - anon_sym_RPAREN, - [60734] = 2, + [71572] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_SEMI, + STATE(1926), 1, sym_comment, - ACTIONS(4692), 1, - aux_sym_preproc_if_token2, - [60741] = 2, + [71585] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_RPAREN, + STATE(1927), 1, sym_comment, - ACTIONS(4694), 1, - anon_sym_SEMI, - [60748] = 2, + [71598] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_RPAREN, + STATE(1928), 1, sym_comment, + [71611] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4696), 1, - aux_sym_preproc_if_token2, - [60755] = 2, - ACTIONS(3211), 1, + anon_sym_COLON, + STATE(1929), 1, sym_comment, - ACTIONS(4698), 1, - aux_sym_preproc_include_token2, - [60762] = 2, + [71624] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4698), 1, + anon_sym_RBRACE, + STATE(1930), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_RPAREN, - [60769] = 2, + [71637] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4700), 1, + aux_sym_preproc_if_token2, + STATE(1931), 1, sym_comment, - ACTIONS(4702), 1, - anon_sym_RBRACE, - [60776] = 2, + [71650] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + aux_sym_preproc_if_token2, + STATE(1932), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_COLON, - [60783] = 2, + [71663] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3112), 1, + anon_sym_COLON, + STATE(1933), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_SEMI, - [60790] = 2, - ACTIONS(2950), 1, + [71676] = 4, + ACTIONS(2114), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1934), 1, sym_comment, - [60797] = 2, + [71689] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3040), 1, + anon_sym_COLON, + STATE(1935), 1, sym_comment, - ACTIONS(3068), 1, - anon_sym_SEMI, - [60804] = 2, + [71702] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4704), 1, aux_sym_preproc_if_token2, - [60811] = 2, - ACTIONS(3), 1, + STATE(1936), 1, sym_comment, - ACTIONS(4706), 1, - aux_sym_preproc_if_token2, - [60818] = 2, + [71715] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_while, + STATE(1937), 1, sym_comment, + [71728] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4708), 1, aux_sym_preproc_if_token2, - [60825] = 2, - ACTIONS(3), 1, + STATE(1938), 1, sym_comment, - ACTIONS(4710), 1, - sym_identifier, - [60832] = 2, + [71741] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4710), 1, + anon_sym_RBRACE, + STATE(1939), 1, sym_comment, - ACTIONS(4712), 1, - anon_sym_COLON, - [60839] = 2, + [71754] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4714), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4712), 1, aux_sym_preproc_if_token2, - [60846] = 2, + STATE(1940), 1, + sym_comment, + [71767] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4714), 1, + anon_sym_STAR, + STATE(1941), 1, sym_comment, + [71780] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4716), 1, - sym_identifier, - [60853] = 2, + aux_sym_preproc_if_token2, + STATE(1942), 1, + sym_comment, + [71793] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4718), 1, + anon_sym_SEMI, + STATE(1943), 1, + sym_comment, + [71806] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4720), 1, + anon_sym_SEMI, + STATE(1944), 1, sym_comment, - ACTIONS(4718), 1, - anon_sym_LPAREN2, - [60860] = 2, + [71819] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(1945), 1, sym_comment, - ACTIONS(4720), 1, - aux_sym_preproc_if_token2, - [60867] = 2, + [71832] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4439), 1, + anon_sym_RBRACE, + STATE(1946), 1, sym_comment, - ACTIONS(4722), 1, - aux_sym_preproc_if_token2, - [60874] = 2, + [71845] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_STAR, + STATE(1947), 1, sym_comment, + [71858] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4724), 1, - sym_identifier, - [60881] = 2, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4379), 1, - aux_sym_preproc_include_token2, - [60888] = 2, - ACTIONS(3211), 1, + anon_sym_COLON, + STATE(1948), 1, sym_comment, - ACTIONS(4726), 1, - aux_sym_preproc_include_token2, - [60895] = 2, + [71871] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4726), 1, + anon_sym_RPAREN, + STATE(1949), 1, sym_comment, + [71884] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4728), 1, - sym_identifier, - [60902] = 2, - ACTIONS(2960), 1, + anon_sym_RBRACK, + STATE(1950), 1, + sym_comment, + [71897] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + STATE(1951), 1, sym_comment, - [60909] = 2, + [71910] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4730), 1, - sym_identifier, - [60916] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + STATE(1952), 1, sym_comment, + [71923] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4732), 1, - anon_sym_RPAREN, - [60923] = 2, + anon_sym_SEMI, + STATE(1953), 1, + sym_comment, + [71936] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3108), 1, + anon_sym_SEMI, + STATE(1954), 1, sym_comment, - ACTIONS(4734), 1, - anon_sym_RPAREN, - [60930] = 2, + [71949] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3126), 1, + anon_sym_COLON, + STATE(1955), 1, sym_comment, - ACTIONS(4736), 1, - anon_sym_RPAREN, - [60937] = 2, + [71962] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_SEMI, + STATE(1956), 1, sym_comment, - ACTIONS(3102), 1, - anon_sym_RPAREN, - [60944] = 2, + [71975] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4736), 1, + anon_sym_RBRACE, + STATE(1957), 1, sym_comment, + [71988] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4738), 1, sym_identifier, - [60951] = 2, - ACTIONS(3), 1, + STATE(1958), 1, sym_comment, - ACTIONS(4740), 1, - anon_sym_RPAREN, - [60958] = 2, + [72001] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4740), 1, + sym_identifier, + STATE(1959), 1, sym_comment, + [72014] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4742), 1, - anon_sym_RPAREN, - [60965] = 2, - ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(1960), 1, sym_comment, + [72027] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4744), 1, - anon_sym_RPAREN, - [60972] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1961), 1, sym_comment, + [72040] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4746), 1, - anon_sym_RPAREN, - [60979] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1962), 1, sym_comment, - ACTIONS(4489), 1, - anon_sym_COMMA, - [60986] = 2, + [72053] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4748), 1, - sym_identifier, - [60993] = 2, - ACTIONS(3211), 1, + aux_sym_preproc_if_token2, + STATE(1963), 1, sym_comment, - ACTIONS(4750), 1, - aux_sym_preproc_include_token2, - [61000] = 2, + [72066] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3124), 1, + anon_sym_RPAREN, + STATE(1964), 1, sym_comment, - ACTIONS(3086), 1, - anon_sym_COLON, - [61007] = 2, + [72079] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4750), 1, + aux_sym_preproc_if_token2, + STATE(1965), 1, sym_comment, - ACTIONS(4752), 1, + [72092] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3114), 1, anon_sym_RPAREN, - [61014] = 2, + STATE(1966), 1, + sym_comment, + [72105] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + sym_identifier, + STATE(1967), 1, sym_comment, - ACTIONS(4754), 1, - anon_sym_while, - [61021] = 2, + [72118] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4754), 1, + anon_sym_SEMI, + STATE(1968), 1, sym_comment, - ACTIONS(4756), 1, - sym_identifier, - [61028] = 2, + [72131] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4756), 1, + anon_sym_STAR, + STATE(1969), 1, sym_comment, + [72144] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4758), 1, - anon_sym_SEMI, - [61035] = 2, - ACTIONS(3211), 1, + aux_sym_preproc_if_token2, + STATE(1970), 1, sym_comment, - ACTIONS(4760), 1, - aux_sym_preproc_include_token2, - [61042] = 2, + [72157] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4760), 1, + aux_sym_preproc_if_token2, + STATE(1971), 1, sym_comment, - ACTIONS(3096), 1, - anon_sym_SEMI, - [61049] = 2, + [72170] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4762), 1, aux_sym_preproc_if_token2, - [61056] = 2, - ACTIONS(3), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4764), 1, - aux_sym_preproc_if_token2, - [61063] = 2, + [72183] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + STATE(1973), 1, sym_comment, - ACTIONS(4766), 1, - sym_identifier, - [61070] = 2, + [72196] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4766), 1, + aux_sym_preproc_if_token2, + STATE(1974), 1, sym_comment, - ACTIONS(4768), 1, - sym_identifier, - [61077] = 2, + [72209] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3128), 1, + anon_sym_SEMI, + STATE(1975), 1, sym_comment, - ACTIONS(4770), 1, - aux_sym_preproc_if_token2, - [61084] = 2, + [72222] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4768), 1, + aux_sym_preproc_if_token2, + STATE(1976), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_SEMI, - [61091] = 2, + [72235] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4770), 1, + aux_sym_preproc_if_token2, + STATE(1977), 1, sym_comment, - ACTIONS(4491), 1, - anon_sym_RBRACE, - [61098] = 2, + [72248] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4772), 1, + aux_sym_preproc_if_token2, + STATE(1978), 1, sym_comment, - ACTIONS(3078), 1, - anon_sym_RPAREN, - [61105] = 2, + [72261] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4774), 1, - aux_sym_preproc_if_token2, - [61112] = 2, - ACTIONS(3211), 1, + sym_identifier, + STATE(1979), 1, sym_comment, - ACTIONS(4307), 1, - aux_sym_preproc_include_token2, - [61119] = 2, + [72274] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3038), 1, + anon_sym_COLON, + STATE(1980), 1, sym_comment, + [72287] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4776), 1, - anon_sym_SEMI, - [61126] = 2, - ACTIONS(2102), 1, - aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + anon_sym_RPAREN, + STATE(1981), 1, sym_comment, - [61133] = 2, + [72300] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4778), 1, anon_sym_SEMI, - [61140] = 2, + STATE(1982), 1, + sym_comment, + [72313] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4780), 1, + anon_sym_LPAREN2, + STATE(1983), 1, sym_comment, - ACTIONS(4778), 1, - aux_sym_preproc_if_token2, - [61147] = 2, + [72326] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4782), 1, + sym_primitive_type, + STATE(1984), 1, sym_comment, - ACTIONS(4780), 1, - anon_sym_STAR, - [61154] = 2, + [72339] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3048), 1, + anon_sym_SEMI, + STATE(1985), 1, sym_comment, - ACTIONS(3090), 1, - anon_sym_COLON, - [61161] = 2, + [72352] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + STATE(1986), 1, sym_comment, - ACTIONS(4782), 1, - anon_sym_RPAREN, - [61168] = 2, + [72365] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3050), 1, + anon_sym_SEMI, + STATE(1987), 1, sym_comment, - ACTIONS(4784), 1, - sym_identifier, - [61175] = 2, + [72378] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3122), 1, + anon_sym_SEMI, + STATE(1988), 1, sym_comment, + [72391] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4786), 1, sym_identifier, - [61182] = 2, - ACTIONS(3), 1, + STATE(1989), 1, sym_comment, + [72404] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4788), 1, sym_identifier, - [61189] = 2, - ACTIONS(3), 1, + STATE(1990), 1, sym_comment, + [72417] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4790), 1, aux_sym_preproc_if_token2, - [61196] = 2, - ACTIONS(3), 1, + STATE(1991), 1, sym_comment, - ACTIONS(3082), 1, - anon_sym_SEMI, - [61203] = 2, + [72430] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4792), 1, - anon_sym_SEMI, - [61210] = 2, - ACTIONS(3), 1, + sym_identifier, + STATE(1992), 1, sym_comment, - ACTIONS(3106), 1, - anon_sym_SEMI, - [61217] = 2, + [72443] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4794), 1, - anon_sym_SEMI, - [61224] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + STATE(1993), 1, sym_comment, + [72456] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, ACTIONS(4796), 1, - anon_sym_SEMI, - [61231] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + STATE(1994), 1, sym_comment, - ACTIONS(4798), 1, - anon_sym_RPAREN, - [61238] = 2, + [72469] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4798), 1, + sym_identifier, + STATE(1995), 1, sym_comment, + [72482] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4800), 1, - sym_identifier, - [61245] = 2, - ACTIONS(3211), 1, + anon_sym_RPAREN, + STATE(1996), 1, sym_comment, - ACTIONS(4802), 1, + [72495] = 4, + ACTIONS(2992), 1, aux_sym_preproc_include_token2, - [61252] = 2, - ACTIONS(3), 1, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(1997), 1, sym_comment, - ACTIONS(3520), 1, - anon_sym_RBRACE, - [61259] = 2, + [72508] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4802), 1, + aux_sym_preproc_if_token2, + STATE(1998), 1, sym_comment, + [72521] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4804), 1, aux_sym_preproc_if_token2, - [61266] = 2, - ACTIONS(3), 1, + STATE(1999), 1, sym_comment, + [72534] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4806), 1, - sym_identifier, - [61273] = 2, - ACTIONS(3211), 1, + anon_sym_RPAREN, + STATE(2000), 1, sym_comment, - ACTIONS(4281), 1, - aux_sym_preproc_include_token2, - [61280] = 2, + [72547] = 4, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4808), 1, aux_sym_preproc_if_token2, - [61287] = 2, - ACTIONS(3), 1, + STATE(2001), 1, sym_comment, - ACTIONS(4810), 1, - anon_sym_RBRACE, - [61294] = 2, + [72560] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4810), 1, + aux_sym_preproc_if_token2, + STATE(2002), 1, sym_comment, + [72573] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4812), 1, - anon_sym_SEMI, - [61301] = 2, + anon_sym_COLON, + STATE(2003), 1, + sym_comment, + [72586] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(2004), 1, sym_comment, - ACTIONS(4814), 1, - anon_sym_SEMI, - [61308] = 2, + [72599] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4814), 1, + aux_sym_preproc_if_token2, + STATE(2005), 1, sym_comment, - ACTIONS(4816), 1, - sym_primitive_type, - [61315] = 2, + [72612] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4816), 1, + sym_identifier, + STATE(2006), 1, sym_comment, - ACTIONS(4818), 1, - anon_sym_COLON, - [61322] = 2, + [72625] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4818), 1, + anon_sym_SEMI, + STATE(2007), 1, sym_comment, - ACTIONS(4820), 1, - sym_identifier, - [61329] = 2, + [72638] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + STATE(2008), 1, sym_comment, + [72651] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4822), 1, aux_sym_preproc_if_token2, - [61336] = 2, - ACTIONS(3), 1, + STATE(2009), 1, sym_comment, - ACTIONS(4824), 1, - anon_sym_RPAREN, - [61343] = 2, + [72664] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4826), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4824), 1, sym_identifier, - [61350] = 2, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4828), 1, - aux_sym_preproc_include_token2, - [61357] = 2, - ACTIONS(3), 1, + STATE(2010), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_RBRACE, - [61364] = 2, + [72677] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, aux_sym_preproc_if_token2, - [61371] = 2, - ACTIONS(3), 1, + STATE(2011), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_RPAREN, - [61378] = 2, + [72690] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4828), 1, anon_sym_RPAREN, - [61385] = 2, - ACTIONS(3), 1, + STATE(2012), 1, sym_comment, - ACTIONS(4836), 1, - aux_sym_preproc_if_token2, - [61392] = 2, + [72703] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4830), 1, + anon_sym_RPAREN, + STATE(2013), 1, sym_comment, - ACTIONS(4838), 1, - sym_identifier, - [61399] = 2, + [72716] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4840), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4832), 1, sym_identifier, - [61406] = 2, - ACTIONS(3), 1, + STATE(2014), 1, sym_comment, - ACTIONS(4842), 1, - anon_sym_LPAREN2, - [61413] = 2, + [72729] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + sym_identifier, + STATE(2015), 1, sym_comment, - ACTIONS(4844), 1, + [72742] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3102), 1, anon_sym_RPAREN, - [61420] = 2, - ACTIONS(3211), 1, + STATE(2016), 1, sym_comment, - ACTIONS(4846), 1, + [72755] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4836), 1, aux_sym_preproc_include_token2, - [61427] = 2, - ACTIONS(3), 1, + STATE(2017), 1, sym_comment, - ACTIONS(4848), 1, - aux_sym_preproc_if_token2, - [61434] = 2, + [72768] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4838), 1, sym_identifier, - [61441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3042), 1, - anon_sym_SEMI, - [61448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 1, - anon_sym_RPAREN, - [61455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4854), 1, - anon_sym_RPAREN, - [61462] = 2, - ACTIONS(3), 1, + STATE(2018), 1, sym_comment, - ACTIONS(4856), 1, - anon_sym_RBRACE, - [61469] = 2, + [72781] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4858), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4840), 1, aux_sym_preproc_if_token2, - [61476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4860), 1, - anon_sym_COMMA, - [61483] = 2, - ACTIONS(3), 1, + STATE(2019), 1, sym_comment, - ACTIONS(4862), 1, - sym_identifier, - [61490] = 2, + [72794] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4864), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4842), 1, aux_sym_preproc_if_token2, - [61497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 1, - anon_sym_COMMA, - [61504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4866), 1, - anon_sym_RBRACE, - [61511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4868), 1, - sym_identifier, - [61518] = 2, - ACTIONS(3), 1, + STATE(2020), 1, sym_comment, - ACTIONS(4870), 1, - aux_sym_preproc_if_token2, - [61525] = 2, + [72807] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4844), 1, + anon_sym_LPAREN2, + STATE(2021), 1, sym_comment, - ACTIONS(4872), 1, - sym_primitive_type, - [61532] = 2, + [72820] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4874), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4846), 1, anon_sym_RPAREN, - [61539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4876), 1, - sym_identifier, - [61546] = 2, - ACTIONS(3), 1, + STATE(2022), 1, sym_comment, - ACTIONS(4878), 1, - sym_identifier, - [61553] = 2, + [72833] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4848), 1, + anon_sym_SEMI, + STATE(2023), 1, sym_comment, - ACTIONS(4880), 1, - anon_sym_LPAREN2, - [61560] = 2, - ACTIONS(3), 1, + [72846] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4134), 1, + aux_sym_preproc_include_token2, + STATE(2024), 1, sym_comment, - ACTIONS(4882), 1, - anon_sym_RPAREN, - [61567] = 2, + [72859] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4850), 1, + anon_sym_SLASH, + STATE(2025), 1, sym_comment, - ACTIONS(4884), 1, - sym_identifier, - [61574] = 2, + [72872] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4852), 1, + anon_sym_RPAREN, + STATE(2026), 1, sym_comment, - ACTIONS(4886), 1, - sym_identifier, - [61581] = 2, + [72885] = 4, ACTIONS(2106), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, - sym_comment, - [61588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2998), 1, - anon_sym_RBRACE, - [61595] = 2, - ACTIONS(3), 1, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + STATE(2027), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_RPAREN, - [61602] = 2, + [72898] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4854), 1, + ts_builtin_sym_end, + STATE(2028), 1, sym_comment, - ACTIONS(4890), 1, - aux_sym_preproc_if_token2, - [61609] = 2, + [72911] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3118), 1, + anon_sym_SEMI, + STATE(2029), 1, sym_comment, - ACTIONS(4892), 1, - anon_sym_STAR, - [61616] = 2, + [72924] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4856), 1, + anon_sym_while, + STATE(2030), 1, sym_comment, - ACTIONS(4894), 1, - anon_sym_LPAREN2, - [61623] = 2, + [72937] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, aux_sym_preproc_if_token2, - [61630] = 2, - ACTIONS(3), 1, + STATE(2031), 1, sym_comment, - ACTIONS(4898), 1, - aux_sym_preproc_if_token2, - [61637] = 2, + [72950] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4860), 1, + anon_sym_RPAREN, + STATE(2032), 1, sym_comment, - ACTIONS(4900), 1, - aux_sym_preproc_if_token2, - [61644] = 2, + [72963] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4862), 1, aux_sym_preproc_if_token2, - [61651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4904), 1, - anon_sym_RPAREN, - [61658] = 2, - ACTIONS(3), 1, + STATE(2033), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_SEMI, - [61665] = 2, + [72976] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4864), 1, + anon_sym_LPAREN2, + STATE(2034), 1, sym_comment, - ACTIONS(4908), 1, - aux_sym_preproc_if_token2, - [61672] = 2, + [72989] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4866), 1, + anon_sym_LPAREN2, + STATE(2035), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_preproc_if_token2, - [61679] = 2, + [73002] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4868), 1, + anon_sym_LPAREN2, + STATE(2036), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_while, - [61686] = 2, + [73015] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3036), 1, + anon_sym_COLON, + STATE(2037), 1, sym_comment, - ACTIONS(4914), 1, - anon_sym_LPAREN2, - [61693] = 2, + [73028] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4870), 1, sym_identifier, - [61700] = 2, - ACTIONS(3), 1, + STATE(2038), 1, sym_comment, - ACTIONS(4918), 1, - aux_sym_preproc_if_token2, - [61707] = 2, + [73041] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4872), 1, + anon_sym_SEMI, + STATE(2039), 1, sym_comment, - ACTIONS(4920), 1, - aux_sym_preproc_if_token2, - [61714] = 2, + [73054] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4874), 1, + anon_sym_LPAREN2, + STATE(2040), 1, sym_comment, - ACTIONS(4922), 1, - sym_identifier, - [61721] = 2, + [73067] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4876), 1, + anon_sym_SEMI, + STATE(2041), 1, sym_comment, - ACTIONS(4924), 1, - sym_identifier, - [61728] = 2, + [73080] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LPAREN2, + STATE(2042), 1, sym_comment, - ACTIONS(3064), 1, - anon_sym_COLON, - [61735] = 2, + [73093] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4880), 1, + anon_sym_while, + STATE(2043), 1, sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON, - [61742] = 2, + [73106] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4926), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4882), 1, anon_sym_SEMI, - [61749] = 2, - ACTIONS(3), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LPAREN2, - [61756] = 2, + [73119] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4884), 1, + anon_sym_COLON, + STATE(2045), 1, sym_comment, - ACTIONS(4930), 1, - anon_sym_SEMI, - [61763] = 2, + [73132] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4932), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3116), 1, anon_sym_SEMI, - [61770] = 2, - ACTIONS(3), 1, + STATE(2046), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_while, - [61777] = 2, + [73145] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN2, + STATE(2047), 1, sym_comment, - ACTIONS(3038), 1, - anon_sym_SEMI, - [61784] = 2, - ACTIONS(2978), 1, - aux_sym_preproc_include_token2, - ACTIONS(3211), 1, - sym_comment, - [61791] = 2, - ACTIONS(2964), 1, + [73158] = 4, + ACTIONS(3237), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3239), 1, + anon_sym_SLASH_STAR, + ACTIONS(4888), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + STATE(2048), 1, sym_comment, - [61798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_RBRACK, - [61805] = 2, + [73171] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4890), 1, + aux_sym_preproc_if_token2, + STATE(2049), 1, sym_comment, - ACTIONS(4938), 1, - anon_sym_SEMI, - [61812] = 2, + [73184] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4892), 1, aux_sym_preproc_if_token2, - [61819] = 2, - ACTIONS(3211), 1, + STATE(2050), 1, sym_comment, - ACTIONS(4942), 1, - aux_sym_preproc_include_token2, - [61826] = 2, + [73197] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4894), 1, anon_sym_while, - [61833] = 2, - ACTIONS(3), 1, + STATE(2051), 1, sym_comment, - ACTIONS(4946), 1, - aux_sym_preproc_if_token2, - [61840] = 2, + [73210] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4896), 1, + anon_sym_LPAREN2, + STATE(2052), 1, sym_comment, - ACTIONS(4948), 1, - anon_sym_RPAREN, - [61847] = 2, - ACTIONS(3211), 1, - sym_comment, - ACTIONS(4950), 1, - aux_sym_preproc_include_token2, - [61854] = 2, + [73223] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4898), 1, sym_identifier, - [61861] = 2, - ACTIONS(3), 1, + STATE(2053), 1, sym_comment, - ACTIONS(4954), 1, + [73236] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4900), 1, anon_sym_LPAREN2, - [61868] = 2, + STATE(2054), 1, + sym_comment, + [73249] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_SEMI, + STATE(2055), 1, sym_comment, - ACTIONS(3034), 1, - anon_sym_COLON, - [61875] = 2, + [73262] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4904), 1, + anon_sym_LPAREN2, + STATE(2056), 1, sym_comment, - ACTIONS(4956), 1, - anon_sym_RPAREN, - [61882] = 2, + [73275] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4906), 1, + sym_identifier, + STATE(2057), 1, sym_comment, - ACTIONS(4958), 1, - anon_sym_LPAREN2, - [61889] = 2, + [73288] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4908), 1, + sym_identifier, + STATE(2058), 1, sym_comment, - ACTIONS(4960), 1, - aux_sym_preproc_if_token2, - [61896] = 2, + [73301] = 4, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4910), 1, + anon_sym_LPAREN2, + STATE(2059), 1, sym_comment, - ACTIONS(4962), 1, - sym_identifier, + [73314] = 1, + ACTIONS(4912), 1, + ts_builtin_sym_end, + [73318] = 1, + ACTIONS(4914), 1, + ts_builtin_sym_end, }; 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)] = 667, - [SMALL_STATE(503)] = 776, - [SMALL_STATE(504)] = 885, - [SMALL_STATE(505)] = 994, - [SMALL_STATE(506)] = 1103, - [SMALL_STATE(507)] = 1212, - [SMALL_STATE(508)] = 1321, - [SMALL_STATE(509)] = 1428, - [SMALL_STATE(510)] = 1535, - [SMALL_STATE(511)] = 1644, - [SMALL_STATE(512)] = 1753, - [SMALL_STATE(513)] = 1862, - [SMALL_STATE(514)] = 1971, - [SMALL_STATE(515)] = 2080, - [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)] = 3604, - [SMALL_STATE(530)] = 3708, - [SMALL_STATE(531)] = 3812, - [SMALL_STATE(532)] = 3916, - [SMALL_STATE(533)] = 4022, - [SMALL_STATE(534)] = 4130, - [SMALL_STATE(535)] = 4238, - [SMALL_STATE(536)] = 4342, - [SMALL_STATE(537)] = 4446, - [SMALL_STATE(538)] = 4550, - [SMALL_STATE(539)] = 4654, - [SMALL_STATE(540)] = 4762, - [SMALL_STATE(541)] = 4866, - [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)] = 9498, - [SMALL_STATE(587)] = 9601, - [SMALL_STATE(588)] = 9702, - [SMALL_STATE(589)] = 9805, - [SMALL_STATE(590)] = 9908, - [SMALL_STATE(591)] = 10009, - [SMALL_STATE(592)] = 10110, - [SMALL_STATE(593)] = 10211, - [SMALL_STATE(594)] = 10312, - [SMALL_STATE(595)] = 10413, - [SMALL_STATE(596)] = 10514, - [SMALL_STATE(597)] = 10617, - [SMALL_STATE(598)] = 10718, - [SMALL_STATE(599)] = 10819, - [SMALL_STATE(600)] = 10922, - [SMALL_STATE(601)] = 11025, - [SMALL_STATE(602)] = 11128, - [SMALL_STATE(603)] = 11229, - [SMALL_STATE(604)] = 11330, - [SMALL_STATE(605)] = 11433, - [SMALL_STATE(606)] = 11534, - [SMALL_STATE(607)] = 11635, - [SMALL_STATE(608)] = 11736, - [SMALL_STATE(609)] = 11837, - [SMALL_STATE(610)] = 11938, - [SMALL_STATE(611)] = 12039, - [SMALL_STATE(612)] = 12140, - [SMALL_STATE(613)] = 12241, - [SMALL_STATE(614)] = 12342, - [SMALL_STATE(615)] = 12443, - [SMALL_STATE(616)] = 12544, - [SMALL_STATE(617)] = 12645, - [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)] = 13772, - [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)] = 15315, - [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)] = 16632, - [SMALL_STATE(657)] = 16735, - [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)] = 17504, - [SMALL_STATE(666)] = 17575, - [SMALL_STATE(667)] = 17646, - [SMALL_STATE(668)] = 17747, - [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)] = 18733, - [SMALL_STATE(684)] = 18798, - [SMALL_STATE(685)] = 18857, - [SMALL_STATE(686)] = 18916, - [SMALL_STATE(687)] = 18975, - [SMALL_STATE(688)] = 19034, - [SMALL_STATE(689)] = 19126, - [SMALL_STATE(690)] = 19218, - [SMALL_STATE(691)] = 19310, - [SMALL_STATE(692)] = 19402, - [SMALL_STATE(693)] = 19460, - [SMALL_STATE(694)] = 19552, - [SMALL_STATE(695)] = 19644, - [SMALL_STATE(696)] = 19736, - [SMALL_STATE(697)] = 19794, - [SMALL_STATE(698)] = 19852, - [SMALL_STATE(699)] = 19944, - [SMALL_STATE(700)] = 20036, - [SMALL_STATE(701)] = 20094, - [SMALL_STATE(702)] = 20186, - [SMALL_STATE(703)] = 20244, - [SMALL_STATE(704)] = 20336, - [SMALL_STATE(705)] = 20394, - [SMALL_STATE(706)] = 20452, - [SMALL_STATE(707)] = 20546, - [SMALL_STATE(708)] = 20638, - [SMALL_STATE(709)] = 20730, - [SMALL_STATE(710)] = 20822, - [SMALL_STATE(711)] = 20914, - [SMALL_STATE(712)] = 20972, - [SMALL_STATE(713)] = 21064, - [SMALL_STATE(714)] = 21156, - [SMALL_STATE(715)] = 21214, - [SMALL_STATE(716)] = 21272, - [SMALL_STATE(717)] = 21330, - [SMALL_STATE(718)] = 21388, - [SMALL_STATE(719)] = 21446, - [SMALL_STATE(720)] = 21504, - [SMALL_STATE(721)] = 21562, - [SMALL_STATE(722)] = 21620, - [SMALL_STATE(723)] = 21687, - [SMALL_STATE(724)] = 21754, - [SMALL_STATE(725)] = 21811, - [SMALL_STATE(726)] = 21900, - [SMALL_STATE(727)] = 21957, - [SMALL_STATE(728)] = 22024, - [SMALL_STATE(729)] = 22089, - [SMALL_STATE(730)] = 22146, - [SMALL_STATE(731)] = 22237, - [SMALL_STATE(732)] = 22294, - [SMALL_STATE(733)] = 22351, - [SMALL_STATE(734)] = 22418, - [SMALL_STATE(735)] = 22507, - [SMALL_STATE(736)] = 22568, - [SMALL_STATE(737)] = 22635, - [SMALL_STATE(738)] = 22700, - [SMALL_STATE(739)] = 22764, - [SMALL_STATE(740)] = 22823, - [SMALL_STATE(741)] = 22905, - [SMALL_STATE(742)] = 22987, - [SMALL_STATE(743)] = 23069, - [SMALL_STATE(744)] = 23151, - [SMALL_STATE(745)] = 23233, - [SMALL_STATE(746)] = 23315, - [SMALL_STATE(747)] = 23397, - [SMALL_STATE(748)] = 23479, - [SMALL_STATE(749)] = 23542, - [SMALL_STATE(750)] = 23621, - [SMALL_STATE(751)] = 23674, - [SMALL_STATE(752)] = 23735, - [SMALL_STATE(753)] = 23796, - [SMALL_STATE(754)] = 23859, - [SMALL_STATE(755)] = 23912, - [SMALL_STATE(756)] = 23965, - [SMALL_STATE(757)] = 24026, - [SMALL_STATE(758)] = 24087, - [SMALL_STATE(759)] = 24150, - [SMALL_STATE(760)] = 24213, - [SMALL_STATE(761)] = 24276, - [SMALL_STATE(762)] = 24339, - [SMALL_STATE(763)] = 24400, - [SMALL_STATE(764)] = 24464, - [SMALL_STATE(765)] = 24524, - [SMALL_STATE(766)] = 24596, - [SMALL_STATE(767)] = 24670, - [SMALL_STATE(768)] = 24746, - [SMALL_STATE(769)] = 24824, - [SMALL_STATE(770)] = 24904, - [SMALL_STATE(771)] = 24986, - [SMALL_STATE(772)] = 25054, - [SMALL_STATE(773)] = 25120, - [SMALL_STATE(774)] = 25172, - [SMALL_STATE(775)] = 25258, - [SMALL_STATE(776)] = 25310, - [SMALL_STATE(777)] = 25362, - [SMALL_STATE(778)] = 25448, - [SMALL_STATE(779)] = 25534, - [SMALL_STATE(780)] = 25589, - [SMALL_STATE(781)] = 25664, - [SMALL_STATE(782)] = 25727, - [SMALL_STATE(783)] = 25782, - [SMALL_STATE(784)] = 25837, - [SMALL_STATE(785)] = 25892, - [SMALL_STATE(786)] = 25947, - [SMALL_STATE(787)] = 26002, - [SMALL_STATE(788)] = 26065, - [SMALL_STATE(789)] = 26120, - [SMALL_STATE(790)] = 26183, - [SMALL_STATE(791)] = 26264, - [SMALL_STATE(792)] = 26327, - [SMALL_STATE(793)] = 26406, - [SMALL_STATE(794)] = 26491, - [SMALL_STATE(795)] = 26546, - [SMALL_STATE(796)] = 26609, - [SMALL_STATE(797)] = 26686, - [SMALL_STATE(798)] = 26771, - [SMALL_STATE(799)] = 26844, - [SMALL_STATE(800)] = 26899, - [SMALL_STATE(801)] = 26984, - [SMALL_STATE(802)] = 27049, - [SMALL_STATE(803)] = 27104, - [SMALL_STATE(804)] = 27171, - [SMALL_STATE(805)] = 27226, - [SMALL_STATE(806)] = 27297, - [SMALL_STATE(807)] = 27352, - [SMALL_STATE(808)] = 27402, - [SMALL_STATE(809)] = 27452, - [SMALL_STATE(810)] = 27502, - [SMALL_STATE(811)] = 27552, - [SMALL_STATE(812)] = 27606, - [SMALL_STATE(813)] = 27660, - [SMALL_STATE(814)] = 27714, - [SMALL_STATE(815)] = 27764, - [SMALL_STATE(816)] = 27814, - [SMALL_STATE(817)] = 27868, - [SMALL_STATE(818)] = 27918, - [SMALL_STATE(819)] = 27972, - [SMALL_STATE(820)] = 28022, - [SMALL_STATE(821)] = 28072, - [SMALL_STATE(822)] = 28122, - [SMALL_STATE(823)] = 28172, - [SMALL_STATE(824)] = 28222, - [SMALL_STATE(825)] = 28272, - [SMALL_STATE(826)] = 28322, - [SMALL_STATE(827)] = 28372, - [SMALL_STATE(828)] = 28422, - [SMALL_STATE(829)] = 28472, - [SMALL_STATE(830)] = 28522, - [SMALL_STATE(831)] = 28572, - [SMALL_STATE(832)] = 28626, - [SMALL_STATE(833)] = 28676, - [SMALL_STATE(834)] = 28726, - [SMALL_STATE(835)] = 28780, - [SMALL_STATE(836)] = 28836, - [SMALL_STATE(837)] = 28886, - [SMALL_STATE(838)] = 28936, - [SMALL_STATE(839)] = 28986, - [SMALL_STATE(840)] = 29036, - [SMALL_STATE(841)] = 29090, - [SMALL_STATE(842)] = 29146, - [SMALL_STATE(843)] = 29196, - [SMALL_STATE(844)] = 29254, - [SMALL_STATE(845)] = 29304, - [SMALL_STATE(846)] = 29353, - [SMALL_STATE(847)] = 29402, - [SMALL_STATE(848)] = 29451, - [SMALL_STATE(849)] = 29500, - [SMALL_STATE(850)] = 29549, - [SMALL_STATE(851)] = 29598, - [SMALL_STATE(852)] = 29647, - [SMALL_STATE(853)] = 29696, - [SMALL_STATE(854)] = 29745, - [SMALL_STATE(855)] = 29794, - [SMALL_STATE(856)] = 29843, - [SMALL_STATE(857)] = 29892, - [SMALL_STATE(858)] = 29941, - [SMALL_STATE(859)] = 29990, - [SMALL_STATE(860)] = 30039, - [SMALL_STATE(861)] = 30088, - [SMALL_STATE(862)] = 30137, - [SMALL_STATE(863)] = 30186, - [SMALL_STATE(864)] = 30248, - [SMALL_STATE(865)] = 30306, - [SMALL_STATE(866)] = 30368, - [SMALL_STATE(867)] = 30430, - [SMALL_STATE(868)] = 30492, - [SMALL_STATE(869)] = 30551, - [SMALL_STATE(870)] = 30610, - [SMALL_STATE(871)] = 30673, - [SMALL_STATE(872)] = 30738, - [SMALL_STATE(873)] = 30817, - [SMALL_STATE(874)] = 30886, - [SMALL_STATE(875)] = 30957, - [SMALL_STATE(876)] = 31030, - [SMALL_STATE(877)] = 31105, - [SMALL_STATE(878)] = 31182, - [SMALL_STATE(879)] = 31261, - [SMALL_STATE(880)] = 31322, - [SMALL_STATE(881)] = 31405, - [SMALL_STATE(882)] = 31488, - [SMALL_STATE(883)] = 31571, - [SMALL_STATE(884)] = 31626, - [SMALL_STATE(885)] = 31705, - [SMALL_STATE(886)] = 31764, - [SMALL_STATE(887)] = 31823, - [SMALL_STATE(888)] = 31882, - [SMALL_STATE(889)] = 31935, - [SMALL_STATE(890)] = 31988, - [SMALL_STATE(891)] = 32045, - [SMALL_STATE(892)] = 32091, - [SMALL_STATE(893)] = 32137, - [SMALL_STATE(894)] = 32183, - [SMALL_STATE(895)] = 32229, - [SMALL_STATE(896)] = 32279, - [SMALL_STATE(897)] = 32325, - [SMALL_STATE(898)] = 32371, - [SMALL_STATE(899)] = 32416, - [SMALL_STATE(900)] = 32461, - [SMALL_STATE(901)] = 32506, - [SMALL_STATE(902)] = 32551, - [SMALL_STATE(903)] = 32600, - [SMALL_STATE(904)] = 32645, - [SMALL_STATE(905)] = 32690, - [SMALL_STATE(906)] = 32735, - [SMALL_STATE(907)] = 32780, - [SMALL_STATE(908)] = 32825, - [SMALL_STATE(909)] = 32870, - [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)] = 33369, - [SMALL_STATE(921)] = 33414, - [SMALL_STATE(922)] = 33459, - [SMALL_STATE(923)] = 33508, - [SMALL_STATE(924)] = 33553, - [SMALL_STATE(925)] = 33598, - [SMALL_STATE(926)] = 33643, - [SMALL_STATE(927)] = 33688, - [SMALL_STATE(928)] = 33733, - [SMALL_STATE(929)] = 33782, - [SMALL_STATE(930)] = 33831, - [SMALL_STATE(931)] = 33880, - [SMALL_STATE(932)] = 33925, - [SMALL_STATE(933)] = 33974, - [SMALL_STATE(934)] = 34019, - [SMALL_STATE(935)] = 34064, - [SMALL_STATE(936)] = 34109, - [SMALL_STATE(937)] = 34154, - [SMALL_STATE(938)] = 34199, - [SMALL_STATE(939)] = 34244, - [SMALL_STATE(940)] = 34289, - [SMALL_STATE(941)] = 34334, - [SMALL_STATE(942)] = 34378, - [SMALL_STATE(943)] = 34422, - [SMALL_STATE(944)] = 34466, - [SMALL_STATE(945)] = 34510, - [SMALL_STATE(946)] = 34554, - [SMALL_STATE(947)] = 34598, - [SMALL_STATE(948)] = 34642, - [SMALL_STATE(949)] = 34686, - [SMALL_STATE(950)] = 34730, - [SMALL_STATE(951)] = 34774, - [SMALL_STATE(952)] = 34843, - [SMALL_STATE(953)] = 34898, - [SMALL_STATE(954)] = 34967, - [SMALL_STATE(955)] = 35036, - [SMALL_STATE(956)] = 35079, - [SMALL_STATE(957)] = 35148, - [SMALL_STATE(958)] = 35200, - [SMALL_STATE(959)] = 35250, - [SMALL_STATE(960)] = 35321, - [SMALL_STATE(961)] = 35398, - [SMALL_STATE(962)] = 35453, - [SMALL_STATE(963)] = 35530, - [SMALL_STATE(964)] = 35607, - [SMALL_STATE(965)] = 35680, - [SMALL_STATE(966)] = 35757, - [SMALL_STATE(967)] = 35826, - [SMALL_STATE(968)] = 35893, - [SMALL_STATE(969)] = 35958, - [SMALL_STATE(970)] = 36021, - [SMALL_STATE(971)] = 36080, - [SMALL_STATE(972)] = 36137, - [SMALL_STATE(973)] = 36195, - [SMALL_STATE(974)] = 36259, - [SMALL_STATE(975)] = 36327, - [SMALL_STATE(976)] = 36369, - [SMALL_STATE(977)] = 36437, - [SMALL_STATE(978)] = 36507, - [SMALL_STATE(979)] = 36547, - [SMALL_STATE(980)] = 36589, - [SMALL_STATE(981)] = 36643, - [SMALL_STATE(982)] = 36685, - [SMALL_STATE(983)] = 36725, - [SMALL_STATE(984)] = 36765, - [SMALL_STATE(985)] = 36805, - [SMALL_STATE(986)] = 36871, - [SMALL_STATE(987)] = 36911, - [SMALL_STATE(988)] = 36967, - [SMALL_STATE(989)] = 37007, - [SMALL_STATE(990)] = 37047, - [SMALL_STATE(991)] = 37109, - [SMALL_STATE(992)] = 37149, - [SMALL_STATE(993)] = 37223, - [SMALL_STATE(994)] = 37263, - [SMALL_STATE(995)] = 37303, - [SMALL_STATE(996)] = 37343, - [SMALL_STATE(997)] = 37383, - [SMALL_STATE(998)] = 37423, - [SMALL_STATE(999)] = 37497, - [SMALL_STATE(1000)] = 37539, - [SMALL_STATE(1001)] = 37613, - [SMALL_STATE(1002)] = 37676, - [SMALL_STATE(1003)] = 37739, - [SMALL_STATE(1004)] = 37804, - [SMALL_STATE(1005)] = 37869, - [SMALL_STATE(1006)] = 37929, - [SMALL_STATE(1007)] = 37989, - [SMALL_STATE(1008)] = 38049, - [SMALL_STATE(1009)] = 38087, - [SMALL_STATE(1010)] = 38147, - [SMALL_STATE(1011)] = 38207, - [SMALL_STATE(1012)] = 38267, - [SMALL_STATE(1013)] = 38305, - [SMALL_STATE(1014)] = 38365, - [SMALL_STATE(1015)] = 38403, - [SMALL_STATE(1016)] = 38463, - [SMALL_STATE(1017)] = 38509, - [SMALL_STATE(1018)] = 38547, - [SMALL_STATE(1019)] = 38621, - [SMALL_STATE(1020)] = 38696, - [SMALL_STATE(1021)] = 38767, - [SMALL_STATE(1022)] = 38842, - [SMALL_STATE(1023)] = 38917, - [SMALL_STATE(1024)] = 38992, - [SMALL_STATE(1025)] = 39067, - [SMALL_STATE(1026)] = 39142, - [SMALL_STATE(1027)] = 39214, - [SMALL_STATE(1028)] = 39284, - [SMALL_STATE(1029)] = 39340, - [SMALL_STATE(1030)] = 39396, - [SMALL_STATE(1031)] = 39462, - [SMALL_STATE(1032)] = 39534, - [SMALL_STATE(1033)] = 39606, - [SMALL_STATE(1034)] = 39678, - [SMALL_STATE(1035)] = 39750, - [SMALL_STATE(1036)] = 39806, - [SMALL_STATE(1037)] = 39870, - [SMALL_STATE(1038)] = 39926, - [SMALL_STATE(1039)] = 39982, - [SMALL_STATE(1040)] = 40054, - [SMALL_STATE(1041)] = 40120, - [SMALL_STATE(1042)] = 40192, - [SMALL_STATE(1043)] = 40264, - [SMALL_STATE(1044)] = 40320, - [SMALL_STATE(1045)] = 40390, - [SMALL_STATE(1046)] = 40452, - [SMALL_STATE(1047)] = 40524, - [SMALL_STATE(1048)] = 40596, - [SMALL_STATE(1049)] = 40656, - [SMALL_STATE(1050)] = 40726, - [SMALL_STATE(1051)] = 40798, - [SMALL_STATE(1052)] = 40854, - [SMALL_STATE(1053)] = 40910, - [SMALL_STATE(1054)] = 40978, - [SMALL_STATE(1055)] = 41050, - [SMALL_STATE(1056)] = 41120, - [SMALL_STATE(1057)] = 41192, - [SMALL_STATE(1058)] = 41264, - [SMALL_STATE(1059)] = 41336, - [SMALL_STATE(1060)] = 41408, - [SMALL_STATE(1061)] = 41464, - [SMALL_STATE(1062)] = 41516, - [SMALL_STATE(1063)] = 41572, - [SMALL_STATE(1064)] = 41626, - [SMALL_STATE(1065)] = 41698, - [SMALL_STATE(1066)] = 41770, - [SMALL_STATE(1067)] = 41842, - [SMALL_STATE(1068)] = 41914, - [SMALL_STATE(1069)] = 41986, - [SMALL_STATE(1070)] = 42058, - [SMALL_STATE(1071)] = 42128, - [SMALL_STATE(1072)] = 42184, - [SMALL_STATE(1073)] = 42240, - [SMALL_STATE(1074)] = 42296, - [SMALL_STATE(1075)] = 42366, - [SMALL_STATE(1076)] = 42438, - [SMALL_STATE(1077)] = 42508, - [SMALL_STATE(1078)] = 42564, - [SMALL_STATE(1079)] = 42636, - [SMALL_STATE(1080)] = 42710, - [SMALL_STATE(1081)] = 42782, - [SMALL_STATE(1082)] = 42854, - [SMALL_STATE(1083)] = 42926, - [SMALL_STATE(1084)] = 42998, - [SMALL_STATE(1085)] = 43068, - [SMALL_STATE(1086)] = 43140, - [SMALL_STATE(1087)] = 43209, - [SMALL_STATE(1088)] = 43278, - [SMALL_STATE(1089)] = 43347, - [SMALL_STATE(1090)] = 43400, - [SMALL_STATE(1091)] = 43469, - [SMALL_STATE(1092)] = 43538, - [SMALL_STATE(1093)] = 43607, - [SMALL_STATE(1094)] = 43676, - [SMALL_STATE(1095)] = 43745, - [SMALL_STATE(1096)] = 43814, - [SMALL_STATE(1097)] = 43883, - [SMALL_STATE(1098)] = 43952, - [SMALL_STATE(1099)] = 44021, - [SMALL_STATE(1100)] = 44074, - [SMALL_STATE(1101)] = 44143, - [SMALL_STATE(1102)] = 44212, - [SMALL_STATE(1103)] = 44265, - [SMALL_STATE(1104)] = 44334, - [SMALL_STATE(1105)] = 44403, - [SMALL_STATE(1106)] = 44456, - [SMALL_STATE(1107)] = 44525, - [SMALL_STATE(1108)] = 44578, - [SMALL_STATE(1109)] = 44613, - [SMALL_STATE(1110)] = 44648, - [SMALL_STATE(1111)] = 44701, - [SMALL_STATE(1112)] = 44770, - [SMALL_STATE(1113)] = 44839, - [SMALL_STATE(1114)] = 44878, - [SMALL_STATE(1115)] = 44947, - [SMALL_STATE(1116)] = 44983, - [SMALL_STATE(1117)] = 45027, - [SMALL_STATE(1118)] = 45093, - [SMALL_STATE(1119)] = 45135, - [SMALL_STATE(1120)] = 45171, - [SMALL_STATE(1121)] = 45207, - [SMALL_STATE(1122)] = 45243, - [SMALL_STATE(1123)] = 45290, - [SMALL_STATE(1124)] = 45337, - [SMALL_STATE(1125)] = 45384, - [SMALL_STATE(1126)] = 45431, - [SMALL_STATE(1127)] = 45478, - [SMALL_STATE(1128)] = 45525, - [SMALL_STATE(1129)] = 45574, - [SMALL_STATE(1130)] = 45628, - [SMALL_STATE(1131)] = 45672, - [SMALL_STATE(1132)] = 45716, - [SMALL_STATE(1133)] = 45770, - [SMALL_STATE(1134)] = 45806, - [SMALL_STATE(1135)] = 45860, - [SMALL_STATE(1136)] = 45914, - [SMALL_STATE(1137)] = 45958, - [SMALL_STATE(1138)] = 46002, - [SMALL_STATE(1139)] = 46046, - [SMALL_STATE(1140)] = 46084, - [SMALL_STATE(1141)] = 46118, - [SMALL_STATE(1142)] = 46162, - [SMALL_STATE(1143)] = 46213, - [SMALL_STATE(1144)] = 46264, - [SMALL_STATE(1145)] = 46315, - [SMALL_STATE(1146)] = 46366, - [SMALL_STATE(1147)] = 46409, - [SMALL_STATE(1148)] = 46460, - [SMALL_STATE(1149)] = 46515, - [SMALL_STATE(1150)] = 46566, - [SMALL_STATE(1151)] = 46621, - [SMALL_STATE(1152)] = 46654, - [SMALL_STATE(1153)] = 46697, - [SMALL_STATE(1154)] = 46748, - [SMALL_STATE(1155)] = 46799, - [SMALL_STATE(1156)] = 46850, - [SMALL_STATE(1157)] = 46901, - [SMALL_STATE(1158)] = 46956, - [SMALL_STATE(1159)] = 47007, - [SMALL_STATE(1160)] = 47050, - [SMALL_STATE(1161)] = 47100, - [SMALL_STATE(1162)] = 47140, - [SMALL_STATE(1163)] = 47174, - [SMALL_STATE(1164)] = 47210, - [SMALL_STATE(1165)] = 47250, - [SMALL_STATE(1166)] = 47292, - [SMALL_STATE(1167)] = 47336, - [SMALL_STATE(1168)] = 47376, - [SMALL_STATE(1169)] = 47422, - [SMALL_STATE(1170)] = 47468, - [SMALL_STATE(1171)] = 47516, - [SMALL_STATE(1172)] = 47556, - [SMALL_STATE(1173)] = 47596, - [SMALL_STATE(1174)] = 47636, - [SMALL_STATE(1175)] = 47664, - [SMALL_STATE(1176)] = 47696, - [SMALL_STATE(1177)] = 47728, - [SMALL_STATE(1178)] = 47768, - [SMALL_STATE(1179)] = 47808, - [SMALL_STATE(1180)] = 47848, - [SMALL_STATE(1181)] = 47876, - [SMALL_STATE(1182)] = 47916, - [SMALL_STATE(1183)] = 47956, - [SMALL_STATE(1184)] = 47996, - [SMALL_STATE(1185)] = 48044, - [SMALL_STATE(1186)] = 48084, - [SMALL_STATE(1187)] = 48124, - [SMALL_STATE(1188)] = 48164, - [SMALL_STATE(1189)] = 48204, - [SMALL_STATE(1190)] = 48244, - [SMALL_STATE(1191)] = 48284, - [SMALL_STATE(1192)] = 48324, - [SMALL_STATE(1193)] = 48352, - [SMALL_STATE(1194)] = 48392, - [SMALL_STATE(1195)] = 48432, - [SMALL_STATE(1196)] = 48472, - [SMALL_STATE(1197)] = 48504, - [SMALL_STATE(1198)] = 48532, - [SMALL_STATE(1199)] = 48564, - [SMALL_STATE(1200)] = 48604, - [SMALL_STATE(1201)] = 48644, - [SMALL_STATE(1202)] = 48684, - [SMALL_STATE(1203)] = 48724, - [SMALL_STATE(1204)] = 48764, - [SMALL_STATE(1205)] = 48804, - [SMALL_STATE(1206)] = 48844, - [SMALL_STATE(1207)] = 48884, - [SMALL_STATE(1208)] = 48912, - [SMALL_STATE(1209)] = 48952, - [SMALL_STATE(1210)] = 48992, - [SMALL_STATE(1211)] = 49032, - [SMALL_STATE(1212)] = 49060, - [SMALL_STATE(1213)] = 49100, - [SMALL_STATE(1214)] = 49140, - [SMALL_STATE(1215)] = 49180, - [SMALL_STATE(1216)] = 49220, - [SMALL_STATE(1217)] = 49260, - [SMALL_STATE(1218)] = 49300, - [SMALL_STATE(1219)] = 49332, - [SMALL_STATE(1220)] = 49372, - [SMALL_STATE(1221)] = 49399, - [SMALL_STATE(1222)] = 49440, - [SMALL_STATE(1223)] = 49467, - [SMALL_STATE(1224)] = 49502, - [SMALL_STATE(1225)] = 49529, - [SMALL_STATE(1226)] = 49574, - [SMALL_STATE(1227)] = 49617, - [SMALL_STATE(1228)] = 49646, - [SMALL_STATE(1229)] = 49689, - [SMALL_STATE(1230)] = 49732, - [SMALL_STATE(1231)] = 49777, - [SMALL_STATE(1232)] = 49822, - [SMALL_STATE(1233)] = 49867, - [SMALL_STATE(1234)] = 49912, - [SMALL_STATE(1235)] = 49957, - [SMALL_STATE(1236)] = 49990, - [SMALL_STATE(1237)] = 50017, - [SMALL_STATE(1238)] = 50066, - [SMALL_STATE(1239)] = 50097, - [SMALL_STATE(1240)] = 50128, - [SMALL_STATE(1241)] = 50173, - [SMALL_STATE(1242)] = 50200, - [SMALL_STATE(1243)] = 50245, - [SMALL_STATE(1244)] = 50290, - [SMALL_STATE(1245)] = 50323, - [SMALL_STATE(1246)] = 50366, - [SMALL_STATE(1247)] = 50393, - [SMALL_STATE(1248)] = 50428, - [SMALL_STATE(1249)] = 50473, - [SMALL_STATE(1250)] = 50504, - [SMALL_STATE(1251)] = 50549, - [SMALL_STATE(1252)] = 50576, - [SMALL_STATE(1253)] = 50619, - [SMALL_STATE(1254)] = 50650, - [SMALL_STATE(1255)] = 50699, - [SMALL_STATE(1256)] = 50744, - [SMALL_STATE(1257)] = 50789, - [SMALL_STATE(1258)] = 50828, - [SMALL_STATE(1259)] = 50859, - [SMALL_STATE(1260)] = 50886, - [SMALL_STATE(1261)] = 50917, - [SMALL_STATE(1262)] = 50948, - [SMALL_STATE(1263)] = 50993, - [SMALL_STATE(1264)] = 51024, - [SMALL_STATE(1265)] = 51061, - [SMALL_STATE(1266)] = 51092, - [SMALL_STATE(1267)] = 51119, - [SMALL_STATE(1268)] = 51164, - [SMALL_STATE(1269)] = 51191, - [SMALL_STATE(1270)] = 51231, - [SMALL_STATE(1271)] = 51271, - [SMALL_STATE(1272)] = 51311, - [SMALL_STATE(1273)] = 51351, - [SMALL_STATE(1274)] = 51391, - [SMALL_STATE(1275)] = 51431, - [SMALL_STATE(1276)] = 51475, - [SMALL_STATE(1277)] = 51516, - [SMALL_STATE(1278)] = 51557, - [SMALL_STATE(1279)] = 51598, - [SMALL_STATE(1280)] = 51639, - [SMALL_STATE(1281)] = 51680, - [SMALL_STATE(1282)] = 51715, - [SMALL_STATE(1283)] = 51756, - [SMALL_STATE(1284)] = 51797, - [SMALL_STATE(1285)] = 51838, - [SMALL_STATE(1286)] = 51878, - [SMALL_STATE(1287)] = 51912, - [SMALL_STATE(1288)] = 51950, - [SMALL_STATE(1289)] = 51988, - [SMALL_STATE(1290)] = 52029, - [SMALL_STATE(1291)] = 52068, - [SMALL_STATE(1292)] = 52105, - [SMALL_STATE(1293)] = 52134, - [SMALL_STATE(1294)] = 52163, - [SMALL_STATE(1295)] = 52202, - [SMALL_STATE(1296)] = 52243, - [SMALL_STATE(1297)] = 52272, - [SMALL_STATE(1298)] = 52301, - [SMALL_STATE(1299)] = 52340, - [SMALL_STATE(1300)] = 52381, - [SMALL_STATE(1301)] = 52420, - [SMALL_STATE(1302)] = 52446, - [SMALL_STATE(1303)] = 52467, - [SMALL_STATE(1304)] = 52496, - [SMALL_STATE(1305)] = 52533, - [SMALL_STATE(1306)] = 52570, - [SMALL_STATE(1307)] = 52607, - [SMALL_STATE(1308)] = 52636, - [SMALL_STATE(1309)] = 52673, - [SMALL_STATE(1310)] = 52710, - [SMALL_STATE(1311)] = 52743, - [SMALL_STATE(1312)] = 52780, - [SMALL_STATE(1313)] = 52809, - [SMALL_STATE(1314)] = 52846, - [SMALL_STATE(1315)] = 52883, - [SMALL_STATE(1316)] = 52920, - [SMALL_STATE(1317)] = 52945, - [SMALL_STATE(1318)] = 52978, - [SMALL_STATE(1319)] = 52999, - [SMALL_STATE(1320)] = 53036, - [SMALL_STATE(1321)] = 53073, - [SMALL_STATE(1322)] = 53102, - [SMALL_STATE(1323)] = 53123, - [SMALL_STATE(1324)] = 53159, - [SMALL_STATE(1325)] = 53183, - [SMALL_STATE(1326)] = 53212, - [SMALL_STATE(1327)] = 53241, - [SMALL_STATE(1328)] = 53270, - [SMALL_STATE(1329)] = 53299, - [SMALL_STATE(1330)] = 53330, - [SMALL_STATE(1331)] = 53359, - [SMALL_STATE(1332)] = 53390, - [SMALL_STATE(1333)] = 53419, - [SMALL_STATE(1334)] = 53448, - [SMALL_STATE(1335)] = 53475, - [SMALL_STATE(1336)] = 53502, - [SMALL_STATE(1337)] = 53533, - [SMALL_STATE(1338)] = 53562, - [SMALL_STATE(1339)] = 53591, - [SMALL_STATE(1340)] = 53622, - [SMALL_STATE(1341)] = 53647, - [SMALL_STATE(1342)] = 53676, - [SMALL_STATE(1343)] = 53707, - [SMALL_STATE(1344)] = 53732, - [SMALL_STATE(1345)] = 53759, - [SMALL_STATE(1346)] = 53790, - [SMALL_STATE(1347)] = 53819, - [SMALL_STATE(1348)] = 53848, - [SMALL_STATE(1349)] = 53877, - [SMALL_STATE(1350)] = 53908, - [SMALL_STATE(1351)] = 53935, - [SMALL_STATE(1352)] = 53966, - [SMALL_STATE(1353)] = 53997, - [SMALL_STATE(1354)] = 54026, - [SMALL_STATE(1355)] = 54044, - [SMALL_STATE(1356)] = 54070, - [SMALL_STATE(1357)] = 54088, - [SMALL_STATE(1358)] = 54120, - [SMALL_STATE(1359)] = 54152, - [SMALL_STATE(1360)] = 54182, - [SMALL_STATE(1361)] = 54208, - [SMALL_STATE(1362)] = 54234, - [SMALL_STATE(1363)] = 54266, - [SMALL_STATE(1364)] = 54284, - [SMALL_STATE(1365)] = 54302, - [SMALL_STATE(1366)] = 54326, - [SMALL_STATE(1367)] = 54352, - [SMALL_STATE(1368)] = 54370, - [SMALL_STATE(1369)] = 54392, - [SMALL_STATE(1370)] = 54424, - [SMALL_STATE(1371)] = 54448, - [SMALL_STATE(1372)] = 54466, - [SMALL_STATE(1373)] = 54484, - [SMALL_STATE(1374)] = 54513, - [SMALL_STATE(1375)] = 54532, - [SMALL_STATE(1376)] = 54561, - [SMALL_STATE(1377)] = 54590, - [SMALL_STATE(1378)] = 54619, - [SMALL_STATE(1379)] = 54648, - [SMALL_STATE(1380)] = 54677, - [SMALL_STATE(1381)] = 54698, - [SMALL_STATE(1382)] = 54719, - [SMALL_STATE(1383)] = 54740, - [SMALL_STATE(1384)] = 54769, - [SMALL_STATE(1385)] = 54790, - [SMALL_STATE(1386)] = 54815, - [SMALL_STATE(1387)] = 54836, - [SMALL_STATE(1388)] = 54857, - [SMALL_STATE(1389)] = 54886, - [SMALL_STATE(1390)] = 54907, - [SMALL_STATE(1391)] = 54932, - [SMALL_STATE(1392)] = 54953, - [SMALL_STATE(1393)] = 54969, - [SMALL_STATE(1394)] = 54985, - [SMALL_STATE(1395)] = 55009, - [SMALL_STATE(1396)] = 55025, - [SMALL_STATE(1397)] = 55051, - [SMALL_STATE(1398)] = 55077, - [SMALL_STATE(1399)] = 55093, - [SMALL_STATE(1400)] = 55109, - [SMALL_STATE(1401)] = 55125, - [SMALL_STATE(1402)] = 55151, - [SMALL_STATE(1403)] = 55177, - [SMALL_STATE(1404)] = 55203, - [SMALL_STATE(1405)] = 55229, - [SMALL_STATE(1406)] = 55255, - [SMALL_STATE(1407)] = 55281, - [SMALL_STATE(1408)] = 55307, - [SMALL_STATE(1409)] = 55327, - [SMALL_STATE(1410)] = 55349, - [SMALL_STATE(1411)] = 55369, - [SMALL_STATE(1412)] = 55395, - [SMALL_STATE(1413)] = 55411, - [SMALL_STATE(1414)] = 55429, - [SMALL_STATE(1415)] = 55455, - [SMALL_STATE(1416)] = 55471, - [SMALL_STATE(1417)] = 55487, - [SMALL_STATE(1418)] = 55513, - [SMALL_STATE(1419)] = 55533, - [SMALL_STATE(1420)] = 55548, - [SMALL_STATE(1421)] = 55565, - [SMALL_STATE(1422)] = 55588, - [SMALL_STATE(1423)] = 55603, - [SMALL_STATE(1424)] = 55618, - [SMALL_STATE(1425)] = 55635, - [SMALL_STATE(1426)] = 55658, - [SMALL_STATE(1427)] = 55673, - [SMALL_STATE(1428)] = 55696, - [SMALL_STATE(1429)] = 55711, - [SMALL_STATE(1430)] = 55734, - [SMALL_STATE(1431)] = 55753, - [SMALL_STATE(1432)] = 55776, - [SMALL_STATE(1433)] = 55791, - [SMALL_STATE(1434)] = 55808, - [SMALL_STATE(1435)] = 55833, - [SMALL_STATE(1436)] = 55848, - [SMALL_STATE(1437)] = 55865, - [SMALL_STATE(1438)] = 55888, - [SMALL_STATE(1439)] = 55903, - [SMALL_STATE(1440)] = 55926, - [SMALL_STATE(1441)] = 55945, - [SMALL_STATE(1442)] = 55960, - [SMALL_STATE(1443)] = 55975, - [SMALL_STATE(1444)] = 55991, - [SMALL_STATE(1445)] = 56011, - [SMALL_STATE(1446)] = 56027, - [SMALL_STATE(1447)] = 56045, - [SMALL_STATE(1448)] = 56063, - [SMALL_STATE(1449)] = 56077, - [SMALL_STATE(1450)] = 56095, - [SMALL_STATE(1451)] = 56115, - [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)] = 56233, - [SMALL_STATE(1460)] = 56253, - [SMALL_STATE(1461)] = 56273, - [SMALL_STATE(1462)] = 56293, - [SMALL_STATE(1463)] = 56307, - [SMALL_STATE(1464)] = 56323, - [SMALL_STATE(1465)] = 56337, - [SMALL_STATE(1466)] = 56351, - [SMALL_STATE(1467)] = 56371, - [SMALL_STATE(1468)] = 56385, - [SMALL_STATE(1469)] = 56405, - [SMALL_STATE(1470)] = 56423, - [SMALL_STATE(1471)] = 56443, - [SMALL_STATE(1472)] = 56463, - [SMALL_STATE(1473)] = 56483, - [SMALL_STATE(1474)] = 56501, - [SMALL_STATE(1475)] = 56519, - [SMALL_STATE(1476)] = 56537, - [SMALL_STATE(1477)] = 56551, - [SMALL_STATE(1478)] = 56571, - [SMALL_STATE(1479)] = 56585, - [SMALL_STATE(1480)] = 56599, - [SMALL_STATE(1481)] = 56619, - [SMALL_STATE(1482)] = 56630, - [SMALL_STATE(1483)] = 56641, - [SMALL_STATE(1484)] = 56660, - [SMALL_STATE(1485)] = 56671, - [SMALL_STATE(1486)] = 56688, - [SMALL_STATE(1487)] = 56699, - [SMALL_STATE(1488)] = 56710, - [SMALL_STATE(1489)] = 56721, - [SMALL_STATE(1490)] = 56732, - [SMALL_STATE(1491)] = 56743, - [SMALL_STATE(1492)] = 56760, - [SMALL_STATE(1493)] = 56771, - [SMALL_STATE(1494)] = 56790, - [SMALL_STATE(1495)] = 56805, - [SMALL_STATE(1496)] = 56816, - [SMALL_STATE(1497)] = 56827, - [SMALL_STATE(1498)] = 56838, - [SMALL_STATE(1499)] = 56857, - [SMALL_STATE(1500)] = 56872, - [SMALL_STATE(1501)] = 56883, - [SMALL_STATE(1502)] = 56893, - [SMALL_STATE(1503)] = 56907, - [SMALL_STATE(1504)] = 56921, - [SMALL_STATE(1505)] = 56935, - [SMALL_STATE(1506)] = 56949, - [SMALL_STATE(1507)] = 56965, - [SMALL_STATE(1508)] = 56979, - [SMALL_STATE(1509)] = 56993, - [SMALL_STATE(1510)] = 57007, - [SMALL_STATE(1511)] = 57021, - [SMALL_STATE(1512)] = 57035, - [SMALL_STATE(1513)] = 57049, - [SMALL_STATE(1514)] = 57063, - [SMALL_STATE(1515)] = 57079, - [SMALL_STATE(1516)] = 57095, - [SMALL_STATE(1517)] = 57109, - [SMALL_STATE(1518)] = 57125, - [SMALL_STATE(1519)] = 57141, - [SMALL_STATE(1520)] = 57155, - [SMALL_STATE(1521)] = 57169, - [SMALL_STATE(1522)] = 57183, - [SMALL_STATE(1523)] = 57197, - [SMALL_STATE(1524)] = 57213, - [SMALL_STATE(1525)] = 57223, - [SMALL_STATE(1526)] = 57239, - [SMALL_STATE(1527)] = 57255, - [SMALL_STATE(1528)] = 57269, - [SMALL_STATE(1529)] = 57285, - [SMALL_STATE(1530)] = 57299, - [SMALL_STATE(1531)] = 57313, - [SMALL_STATE(1532)] = 57327, - [SMALL_STATE(1533)] = 57341, - [SMALL_STATE(1534)] = 57355, - [SMALL_STATE(1535)] = 57371, - [SMALL_STATE(1536)] = 57385, - [SMALL_STATE(1537)] = 57399, - [SMALL_STATE(1538)] = 57413, - [SMALL_STATE(1539)] = 57429, - [SMALL_STATE(1540)] = 57443, - [SMALL_STATE(1541)] = 57457, - [SMALL_STATE(1542)] = 57471, - [SMALL_STATE(1543)] = 57485, - [SMALL_STATE(1544)] = 57499, - [SMALL_STATE(1545)] = 57513, - [SMALL_STATE(1546)] = 57527, - [SMALL_STATE(1547)] = 57543, - [SMALL_STATE(1548)] = 57557, - [SMALL_STATE(1549)] = 57573, - [SMALL_STATE(1550)] = 57589, - [SMALL_STATE(1551)] = 57603, - [SMALL_STATE(1552)] = 57617, - [SMALL_STATE(1553)] = 57631, - [SMALL_STATE(1554)] = 57645, - [SMALL_STATE(1555)] = 57661, - [SMALL_STATE(1556)] = 57675, - [SMALL_STATE(1557)] = 57691, - [SMALL_STATE(1558)] = 57707, - [SMALL_STATE(1559)] = 57723, - [SMALL_STATE(1560)] = 57737, - [SMALL_STATE(1561)] = 57751, - [SMALL_STATE(1562)] = 57765, - [SMALL_STATE(1563)] = 57779, - [SMALL_STATE(1564)] = 57793, - [SMALL_STATE(1565)] = 57809, - [SMALL_STATE(1566)] = 57822, - [SMALL_STATE(1567)] = 57835, - [SMALL_STATE(1568)] = 57848, - [SMALL_STATE(1569)] = 57861, - [SMALL_STATE(1570)] = 57874, - [SMALL_STATE(1571)] = 57887, - [SMALL_STATE(1572)] = 57900, - [SMALL_STATE(1573)] = 57913, - [SMALL_STATE(1574)] = 57926, - [SMALL_STATE(1575)] = 57939, - [SMALL_STATE(1576)] = 57952, - [SMALL_STATE(1577)] = 57965, - [SMALL_STATE(1578)] = 57978, - [SMALL_STATE(1579)] = 57991, - [SMALL_STATE(1580)] = 58004, - [SMALL_STATE(1581)] = 58017, - [SMALL_STATE(1582)] = 58030, - [SMALL_STATE(1583)] = 58043, - [SMALL_STATE(1584)] = 58056, - [SMALL_STATE(1585)] = 58069, - [SMALL_STATE(1586)] = 58082, - [SMALL_STATE(1587)] = 58095, - [SMALL_STATE(1588)] = 58108, - [SMALL_STATE(1589)] = 58121, - [SMALL_STATE(1590)] = 58134, - [SMALL_STATE(1591)] = 58147, - [SMALL_STATE(1592)] = 58156, - [SMALL_STATE(1593)] = 58169, - [SMALL_STATE(1594)] = 58182, - [SMALL_STATE(1595)] = 58195, - [SMALL_STATE(1596)] = 58208, - [SMALL_STATE(1597)] = 58221, - [SMALL_STATE(1598)] = 58234, - [SMALL_STATE(1599)] = 58247, - [SMALL_STATE(1600)] = 58260, - [SMALL_STATE(1601)] = 58273, - [SMALL_STATE(1602)] = 58286, - [SMALL_STATE(1603)] = 58299, - [SMALL_STATE(1604)] = 58312, - [SMALL_STATE(1605)] = 58325, - [SMALL_STATE(1606)] = 58338, - [SMALL_STATE(1607)] = 58351, - [SMALL_STATE(1608)] = 58364, - [SMALL_STATE(1609)] = 58377, - [SMALL_STATE(1610)] = 58390, - [SMALL_STATE(1611)] = 58401, - [SMALL_STATE(1612)] = 58412, - [SMALL_STATE(1613)] = 58425, - [SMALL_STATE(1614)] = 58438, - [SMALL_STATE(1615)] = 58451, - [SMALL_STATE(1616)] = 58464, - [SMALL_STATE(1617)] = 58477, - [SMALL_STATE(1618)] = 58490, - [SMALL_STATE(1619)] = 58503, - [SMALL_STATE(1620)] = 58516, - [SMALL_STATE(1621)] = 58529, - [SMALL_STATE(1622)] = 58542, - [SMALL_STATE(1623)] = 58555, - [SMALL_STATE(1624)] = 58564, - [SMALL_STATE(1625)] = 58577, - [SMALL_STATE(1626)] = 58590, - [SMALL_STATE(1627)] = 58603, - [SMALL_STATE(1628)] = 58616, - [SMALL_STATE(1629)] = 58629, - [SMALL_STATE(1630)] = 58642, - [SMALL_STATE(1631)] = 58655, - [SMALL_STATE(1632)] = 58668, - [SMALL_STATE(1633)] = 58677, - [SMALL_STATE(1634)] = 58690, - [SMALL_STATE(1635)] = 58699, - [SMALL_STATE(1636)] = 58712, - [SMALL_STATE(1637)] = 58725, - [SMALL_STATE(1638)] = 58734, - [SMALL_STATE(1639)] = 58745, - [SMALL_STATE(1640)] = 58758, - [SMALL_STATE(1641)] = 58771, - [SMALL_STATE(1642)] = 58780, - [SMALL_STATE(1643)] = 58793, - [SMALL_STATE(1644)] = 58806, - [SMALL_STATE(1645)] = 58819, - [SMALL_STATE(1646)] = 58832, - [SMALL_STATE(1647)] = 58845, - [SMALL_STATE(1648)] = 58858, - [SMALL_STATE(1649)] = 58871, - [SMALL_STATE(1650)] = 58880, - [SMALL_STATE(1651)] = 58891, - [SMALL_STATE(1652)] = 58904, - [SMALL_STATE(1653)] = 58917, - [SMALL_STATE(1654)] = 58930, - [SMALL_STATE(1655)] = 58943, - [SMALL_STATE(1656)] = 58956, - [SMALL_STATE(1657)] = 58965, - [SMALL_STATE(1658)] = 58978, - [SMALL_STATE(1659)] = 58991, - [SMALL_STATE(1660)] = 59004, - [SMALL_STATE(1661)] = 59017, - [SMALL_STATE(1662)] = 59030, - [SMALL_STATE(1663)] = 59043, - [SMALL_STATE(1664)] = 59056, - [SMALL_STATE(1665)] = 59069, - [SMALL_STATE(1666)] = 59078, - [SMALL_STATE(1667)] = 59091, - [SMALL_STATE(1668)] = 59104, - [SMALL_STATE(1669)] = 59117, - [SMALL_STATE(1670)] = 59130, - [SMALL_STATE(1671)] = 59143, - [SMALL_STATE(1672)] = 59156, - [SMALL_STATE(1673)] = 59169, - [SMALL_STATE(1674)] = 59182, - [SMALL_STATE(1675)] = 59195, - [SMALL_STATE(1676)] = 59204, - [SMALL_STATE(1677)] = 59213, - [SMALL_STATE(1678)] = 59226, - [SMALL_STATE(1679)] = 59239, - [SMALL_STATE(1680)] = 59252, - [SMALL_STATE(1681)] = 59263, - [SMALL_STATE(1682)] = 59276, - [SMALL_STATE(1683)] = 59289, - [SMALL_STATE(1684)] = 59302, - [SMALL_STATE(1685)] = 59315, - [SMALL_STATE(1686)] = 59324, - [SMALL_STATE(1687)] = 59337, - [SMALL_STATE(1688)] = 59347, - [SMALL_STATE(1689)] = 59357, - [SMALL_STATE(1690)] = 59367, - [SMALL_STATE(1691)] = 59377, - [SMALL_STATE(1692)] = 59387, - [SMALL_STATE(1693)] = 59397, - [SMALL_STATE(1694)] = 59405, - [SMALL_STATE(1695)] = 59415, - [SMALL_STATE(1696)] = 59425, - [SMALL_STATE(1697)] = 59435, - [SMALL_STATE(1698)] = 59445, - [SMALL_STATE(1699)] = 59453, - [SMALL_STATE(1700)] = 59463, - [SMALL_STATE(1701)] = 59473, - [SMALL_STATE(1702)] = 59483, - [SMALL_STATE(1703)] = 59493, - [SMALL_STATE(1704)] = 59503, - [SMALL_STATE(1705)] = 59511, - [SMALL_STATE(1706)] = 59521, - [SMALL_STATE(1707)] = 59531, - [SMALL_STATE(1708)] = 59539, - [SMALL_STATE(1709)] = 59549, - [SMALL_STATE(1710)] = 59559, - [SMALL_STATE(1711)] = 59569, - [SMALL_STATE(1712)] = 59579, - [SMALL_STATE(1713)] = 59587, - [SMALL_STATE(1714)] = 59595, - [SMALL_STATE(1715)] = 59603, - [SMALL_STATE(1716)] = 59611, - [SMALL_STATE(1717)] = 59621, - [SMALL_STATE(1718)] = 59631, - [SMALL_STATE(1719)] = 59641, - [SMALL_STATE(1720)] = 59651, - [SMALL_STATE(1721)] = 59661, - [SMALL_STATE(1722)] = 59671, - [SMALL_STATE(1723)] = 59681, - [SMALL_STATE(1724)] = 59691, - [SMALL_STATE(1725)] = 59699, - [SMALL_STATE(1726)] = 59707, - [SMALL_STATE(1727)] = 59717, - [SMALL_STATE(1728)] = 59727, - [SMALL_STATE(1729)] = 59735, - [SMALL_STATE(1730)] = 59745, - [SMALL_STATE(1731)] = 59755, - [SMALL_STATE(1732)] = 59765, - [SMALL_STATE(1733)] = 59775, - [SMALL_STATE(1734)] = 59785, - [SMALL_STATE(1735)] = 59795, - [SMALL_STATE(1736)] = 59805, - [SMALL_STATE(1737)] = 59815, - [SMALL_STATE(1738)] = 59825, - [SMALL_STATE(1739)] = 59835, - [SMALL_STATE(1740)] = 59845, - [SMALL_STATE(1741)] = 59855, - [SMALL_STATE(1742)] = 59865, - [SMALL_STATE(1743)] = 59875, - [SMALL_STATE(1744)] = 59885, - [SMALL_STATE(1745)] = 59895, - [SMALL_STATE(1746)] = 59905, - [SMALL_STATE(1747)] = 59915, - [SMALL_STATE(1748)] = 59925, - [SMALL_STATE(1749)] = 59933, - [SMALL_STATE(1750)] = 59941, - [SMALL_STATE(1751)] = 59951, - [SMALL_STATE(1752)] = 59959, - [SMALL_STATE(1753)] = 59969, - [SMALL_STATE(1754)] = 59977, - [SMALL_STATE(1755)] = 59987, - [SMALL_STATE(1756)] = 59997, - [SMALL_STATE(1757)] = 60007, - [SMALL_STATE(1758)] = 60017, - [SMALL_STATE(1759)] = 60025, - [SMALL_STATE(1760)] = 60035, - [SMALL_STATE(1761)] = 60045, - [SMALL_STATE(1762)] = 60055, - [SMALL_STATE(1763)] = 60065, - [SMALL_STATE(1764)] = 60075, - [SMALL_STATE(1765)] = 60085, - [SMALL_STATE(1766)] = 60095, - [SMALL_STATE(1767)] = 60103, - [SMALL_STATE(1768)] = 60113, - [SMALL_STATE(1769)] = 60123, - [SMALL_STATE(1770)] = 60133, - [SMALL_STATE(1771)] = 60143, - [SMALL_STATE(1772)] = 60153, - [SMALL_STATE(1773)] = 60163, - [SMALL_STATE(1774)] = 60171, - [SMALL_STATE(1775)] = 60181, - [SMALL_STATE(1776)] = 60188, - [SMALL_STATE(1777)] = 60195, - [SMALL_STATE(1778)] = 60202, - [SMALL_STATE(1779)] = 60209, - [SMALL_STATE(1780)] = 60216, - [SMALL_STATE(1781)] = 60223, - [SMALL_STATE(1782)] = 60230, - [SMALL_STATE(1783)] = 60237, - [SMALL_STATE(1784)] = 60244, - [SMALL_STATE(1785)] = 60251, - [SMALL_STATE(1786)] = 60258, - [SMALL_STATE(1787)] = 60265, - [SMALL_STATE(1788)] = 60272, - [SMALL_STATE(1789)] = 60279, - [SMALL_STATE(1790)] = 60286, - [SMALL_STATE(1791)] = 60293, - [SMALL_STATE(1792)] = 60300, - [SMALL_STATE(1793)] = 60307, - [SMALL_STATE(1794)] = 60314, - [SMALL_STATE(1795)] = 60321, - [SMALL_STATE(1796)] = 60328, - [SMALL_STATE(1797)] = 60335, - [SMALL_STATE(1798)] = 60342, - [SMALL_STATE(1799)] = 60349, - [SMALL_STATE(1800)] = 60356, - [SMALL_STATE(1801)] = 60363, - [SMALL_STATE(1802)] = 60370, - [SMALL_STATE(1803)] = 60377, - [SMALL_STATE(1804)] = 60384, - [SMALL_STATE(1805)] = 60391, - [SMALL_STATE(1806)] = 60398, - [SMALL_STATE(1807)] = 60405, - [SMALL_STATE(1808)] = 60412, - [SMALL_STATE(1809)] = 60419, - [SMALL_STATE(1810)] = 60426, - [SMALL_STATE(1811)] = 60433, - [SMALL_STATE(1812)] = 60440, - [SMALL_STATE(1813)] = 60447, - [SMALL_STATE(1814)] = 60454, - [SMALL_STATE(1815)] = 60461, - [SMALL_STATE(1816)] = 60468, - [SMALL_STATE(1817)] = 60475, - [SMALL_STATE(1818)] = 60482, - [SMALL_STATE(1819)] = 60489, - [SMALL_STATE(1820)] = 60496, - [SMALL_STATE(1821)] = 60503, - [SMALL_STATE(1822)] = 60510, - [SMALL_STATE(1823)] = 60517, - [SMALL_STATE(1824)] = 60524, - [SMALL_STATE(1825)] = 60531, - [SMALL_STATE(1826)] = 60538, - [SMALL_STATE(1827)] = 60545, - [SMALL_STATE(1828)] = 60552, - [SMALL_STATE(1829)] = 60559, - [SMALL_STATE(1830)] = 60566, - [SMALL_STATE(1831)] = 60573, - [SMALL_STATE(1832)] = 60580, - [SMALL_STATE(1833)] = 60587, - [SMALL_STATE(1834)] = 60594, - [SMALL_STATE(1835)] = 60601, - [SMALL_STATE(1836)] = 60608, - [SMALL_STATE(1837)] = 60615, - [SMALL_STATE(1838)] = 60622, - [SMALL_STATE(1839)] = 60629, - [SMALL_STATE(1840)] = 60636, - [SMALL_STATE(1841)] = 60643, - [SMALL_STATE(1842)] = 60650, - [SMALL_STATE(1843)] = 60657, - [SMALL_STATE(1844)] = 60664, - [SMALL_STATE(1845)] = 60671, - [SMALL_STATE(1846)] = 60678, - [SMALL_STATE(1847)] = 60685, - [SMALL_STATE(1848)] = 60692, - [SMALL_STATE(1849)] = 60699, - [SMALL_STATE(1850)] = 60706, - [SMALL_STATE(1851)] = 60713, - [SMALL_STATE(1852)] = 60720, - [SMALL_STATE(1853)] = 60727, - [SMALL_STATE(1854)] = 60734, - [SMALL_STATE(1855)] = 60741, - [SMALL_STATE(1856)] = 60748, - [SMALL_STATE(1857)] = 60755, - [SMALL_STATE(1858)] = 60762, - [SMALL_STATE(1859)] = 60769, - [SMALL_STATE(1860)] = 60776, - [SMALL_STATE(1861)] = 60783, - [SMALL_STATE(1862)] = 60790, - [SMALL_STATE(1863)] = 60797, - [SMALL_STATE(1864)] = 60804, - [SMALL_STATE(1865)] = 60811, - [SMALL_STATE(1866)] = 60818, - [SMALL_STATE(1867)] = 60825, - [SMALL_STATE(1868)] = 60832, - [SMALL_STATE(1869)] = 60839, - [SMALL_STATE(1870)] = 60846, - [SMALL_STATE(1871)] = 60853, - [SMALL_STATE(1872)] = 60860, - [SMALL_STATE(1873)] = 60867, - [SMALL_STATE(1874)] = 60874, - [SMALL_STATE(1875)] = 60881, - [SMALL_STATE(1876)] = 60888, - [SMALL_STATE(1877)] = 60895, - [SMALL_STATE(1878)] = 60902, - [SMALL_STATE(1879)] = 60909, - [SMALL_STATE(1880)] = 60916, - [SMALL_STATE(1881)] = 60923, - [SMALL_STATE(1882)] = 60930, - [SMALL_STATE(1883)] = 60937, - [SMALL_STATE(1884)] = 60944, - [SMALL_STATE(1885)] = 60951, - [SMALL_STATE(1886)] = 60958, - [SMALL_STATE(1887)] = 60965, - [SMALL_STATE(1888)] = 60972, - [SMALL_STATE(1889)] = 60979, - [SMALL_STATE(1890)] = 60986, - [SMALL_STATE(1891)] = 60993, - [SMALL_STATE(1892)] = 61000, - [SMALL_STATE(1893)] = 61007, - [SMALL_STATE(1894)] = 61014, - [SMALL_STATE(1895)] = 61021, - [SMALL_STATE(1896)] = 61028, - [SMALL_STATE(1897)] = 61035, - [SMALL_STATE(1898)] = 61042, - [SMALL_STATE(1899)] = 61049, - [SMALL_STATE(1900)] = 61056, - [SMALL_STATE(1901)] = 61063, - [SMALL_STATE(1902)] = 61070, - [SMALL_STATE(1903)] = 61077, - [SMALL_STATE(1904)] = 61084, - [SMALL_STATE(1905)] = 61091, - [SMALL_STATE(1906)] = 61098, - [SMALL_STATE(1907)] = 61105, - [SMALL_STATE(1908)] = 61112, - [SMALL_STATE(1909)] = 61119, - [SMALL_STATE(1910)] = 61126, - [SMALL_STATE(1911)] = 61133, - [SMALL_STATE(1912)] = 61140, - [SMALL_STATE(1913)] = 61147, - [SMALL_STATE(1914)] = 61154, - [SMALL_STATE(1915)] = 61161, - [SMALL_STATE(1916)] = 61168, - [SMALL_STATE(1917)] = 61175, - [SMALL_STATE(1918)] = 61182, - [SMALL_STATE(1919)] = 61189, - [SMALL_STATE(1920)] = 61196, - [SMALL_STATE(1921)] = 61203, - [SMALL_STATE(1922)] = 61210, - [SMALL_STATE(1923)] = 61217, - [SMALL_STATE(1924)] = 61224, - [SMALL_STATE(1925)] = 61231, - [SMALL_STATE(1926)] = 61238, - [SMALL_STATE(1927)] = 61245, - [SMALL_STATE(1928)] = 61252, - [SMALL_STATE(1929)] = 61259, - [SMALL_STATE(1930)] = 61266, - [SMALL_STATE(1931)] = 61273, - [SMALL_STATE(1932)] = 61280, - [SMALL_STATE(1933)] = 61287, - [SMALL_STATE(1934)] = 61294, - [SMALL_STATE(1935)] = 61301, - [SMALL_STATE(1936)] = 61308, - [SMALL_STATE(1937)] = 61315, - [SMALL_STATE(1938)] = 61322, - [SMALL_STATE(1939)] = 61329, - [SMALL_STATE(1940)] = 61336, - [SMALL_STATE(1941)] = 61343, - [SMALL_STATE(1942)] = 61350, - [SMALL_STATE(1943)] = 61357, - [SMALL_STATE(1944)] = 61364, - [SMALL_STATE(1945)] = 61371, - [SMALL_STATE(1946)] = 61378, - [SMALL_STATE(1947)] = 61385, - [SMALL_STATE(1948)] = 61392, - [SMALL_STATE(1949)] = 61399, - [SMALL_STATE(1950)] = 61406, - [SMALL_STATE(1951)] = 61413, - [SMALL_STATE(1952)] = 61420, - [SMALL_STATE(1953)] = 61427, - [SMALL_STATE(1954)] = 61434, - [SMALL_STATE(1955)] = 61441, - [SMALL_STATE(1956)] = 61448, - [SMALL_STATE(1957)] = 61455, - [SMALL_STATE(1958)] = 61462, - [SMALL_STATE(1959)] = 61469, - [SMALL_STATE(1960)] = 61476, - [SMALL_STATE(1961)] = 61483, - [SMALL_STATE(1962)] = 61490, - [SMALL_STATE(1963)] = 61497, - [SMALL_STATE(1964)] = 61504, - [SMALL_STATE(1965)] = 61511, - [SMALL_STATE(1966)] = 61518, - [SMALL_STATE(1967)] = 61525, - [SMALL_STATE(1968)] = 61532, - [SMALL_STATE(1969)] = 61539, - [SMALL_STATE(1970)] = 61546, - [SMALL_STATE(1971)] = 61553, - [SMALL_STATE(1972)] = 61560, - [SMALL_STATE(1973)] = 61567, - [SMALL_STATE(1974)] = 61574, - [SMALL_STATE(1975)] = 61581, - [SMALL_STATE(1976)] = 61588, - [SMALL_STATE(1977)] = 61595, - [SMALL_STATE(1978)] = 61602, - [SMALL_STATE(1979)] = 61609, - [SMALL_STATE(1980)] = 61616, - [SMALL_STATE(1981)] = 61623, - [SMALL_STATE(1982)] = 61630, - [SMALL_STATE(1983)] = 61637, - [SMALL_STATE(1984)] = 61644, - [SMALL_STATE(1985)] = 61651, - [SMALL_STATE(1986)] = 61658, - [SMALL_STATE(1987)] = 61665, - [SMALL_STATE(1988)] = 61672, - [SMALL_STATE(1989)] = 61679, - [SMALL_STATE(1990)] = 61686, - [SMALL_STATE(1991)] = 61693, - [SMALL_STATE(1992)] = 61700, - [SMALL_STATE(1993)] = 61707, - [SMALL_STATE(1994)] = 61714, - [SMALL_STATE(1995)] = 61721, - [SMALL_STATE(1996)] = 61728, - [SMALL_STATE(1997)] = 61735, - [SMALL_STATE(1998)] = 61742, - [SMALL_STATE(1999)] = 61749, - [SMALL_STATE(2000)] = 61756, - [SMALL_STATE(2001)] = 61763, - [SMALL_STATE(2002)] = 61770, - [SMALL_STATE(2003)] = 61777, - [SMALL_STATE(2004)] = 61784, - [SMALL_STATE(2005)] = 61791, - [SMALL_STATE(2006)] = 61798, - [SMALL_STATE(2007)] = 61805, - [SMALL_STATE(2008)] = 61812, - [SMALL_STATE(2009)] = 61819, - [SMALL_STATE(2010)] = 61826, - [SMALL_STATE(2011)] = 61833, - [SMALL_STATE(2012)] = 61840, - [SMALL_STATE(2013)] = 61847, - [SMALL_STATE(2014)] = 61854, - [SMALL_STATE(2015)] = 61861, - [SMALL_STATE(2016)] = 61868, - [SMALL_STATE(2017)] = 61875, - [SMALL_STATE(2018)] = 61882, - [SMALL_STATE(2019)] = 61889, - [SMALL_STATE(2020)] = 61896, + [SMALL_STATE(507)] = 0, + [SMALL_STATE(508)] = 119, + [SMALL_STATE(509)] = 238, + [SMALL_STATE(510)] = 357, + [SMALL_STATE(511)] = 476, + [SMALL_STATE(512)] = 595, + [SMALL_STATE(513)] = 714, + [SMALL_STATE(514)] = 833, + [SMALL_STATE(515)] = 952, + [SMALL_STATE(516)] = 1071, + [SMALL_STATE(517)] = 1190, + [SMALL_STATE(518)] = 1309, + [SMALL_STATE(519)] = 1428, + [SMALL_STATE(520)] = 1547, + [SMALL_STATE(521)] = 1666, + [SMALL_STATE(522)] = 1785, + [SMALL_STATE(523)] = 1904, + [SMALL_STATE(524)] = 2023, + [SMALL_STATE(525)] = 2142, + [SMALL_STATE(526)] = 2261, + [SMALL_STATE(527)] = 2380, + [SMALL_STATE(528)] = 2499, + [SMALL_STATE(529)] = 2618, + [SMALL_STATE(530)] = 2737, + [SMALL_STATE(531)] = 2856, + [SMALL_STATE(532)] = 2975, + [SMALL_STATE(533)] = 3094, + [SMALL_STATE(534)] = 3213, + [SMALL_STATE(535)] = 3332, + [SMALL_STATE(536)] = 3448, + [SMALL_STATE(537)] = 3564, + [SMALL_STATE(538)] = 3680, + [SMALL_STATE(539)] = 3796, + [SMALL_STATE(540)] = 3912, + [SMALL_STATE(541)] = 4034, + [SMALL_STATE(542)] = 4150, + [SMALL_STATE(543)] = 4266, + [SMALL_STATE(544)] = 4388, + [SMALL_STATE(545)] = 4504, + [SMALL_STATE(546)] = 4624, + [SMALL_STATE(547)] = 4740, + [SMALL_STATE(548)] = 4862, + [SMALL_STATE(549)] = 4984, + [SMALL_STATE(550)] = 5100, + [SMALL_STATE(551)] = 5216, + [SMALL_STATE(552)] = 5332, + [SMALL_STATE(553)] = 5452, + [SMALL_STATE(554)] = 5568, + [SMALL_STATE(555)] = 5681, + [SMALL_STATE(556)] = 5794, + [SMALL_STATE(557)] = 5907, + [SMALL_STATE(558)] = 6020, + [SMALL_STATE(559)] = 6133, + [SMALL_STATE(560)] = 6246, + [SMALL_STATE(561)] = 6359, + [SMALL_STATE(562)] = 6472, + [SMALL_STATE(563)] = 6585, + [SMALL_STATE(564)] = 6698, + [SMALL_STATE(565)] = 6811, + [SMALL_STATE(566)] = 6924, + [SMALL_STATE(567)] = 7037, + [SMALL_STATE(568)] = 7150, + [SMALL_STATE(569)] = 7263, + [SMALL_STATE(570)] = 7376, + [SMALL_STATE(571)] = 7489, + [SMALL_STATE(572)] = 7602, + [SMALL_STATE(573)] = 7715, + [SMALL_STATE(574)] = 7828, + [SMALL_STATE(575)] = 7941, + [SMALL_STATE(576)] = 8054, + [SMALL_STATE(577)] = 8167, + [SMALL_STATE(578)] = 8280, + [SMALL_STATE(579)] = 8393, + [SMALL_STATE(580)] = 8506, + [SMALL_STATE(581)] = 8619, + [SMALL_STATE(582)] = 8732, + [SMALL_STATE(583)] = 8845, + [SMALL_STATE(584)] = 8958, + [SMALL_STATE(585)] = 9071, + [SMALL_STATE(586)] = 9184, + [SMALL_STATE(587)] = 9297, + [SMALL_STATE(588)] = 9410, + [SMALL_STATE(589)] = 9523, + [SMALL_STATE(590)] = 9636, + [SMALL_STATE(591)] = 9749, + [SMALL_STATE(592)] = 9862, + [SMALL_STATE(593)] = 9975, + [SMALL_STATE(594)] = 10088, + [SMALL_STATE(595)] = 10201, + [SMALL_STATE(596)] = 10314, + [SMALL_STATE(597)] = 10427, + [SMALL_STATE(598)] = 10540, + [SMALL_STATE(599)] = 10653, + [SMALL_STATE(600)] = 10766, + [SMALL_STATE(601)] = 10879, + [SMALL_STATE(602)] = 10992, + [SMALL_STATE(603)] = 11105, + [SMALL_STATE(604)] = 11218, + [SMALL_STATE(605)] = 11331, + [SMALL_STATE(606)] = 11444, + [SMALL_STATE(607)] = 11557, + [SMALL_STATE(608)] = 11670, + [SMALL_STATE(609)] = 11783, + [SMALL_STATE(610)] = 11896, + [SMALL_STATE(611)] = 12009, + [SMALL_STATE(612)] = 12122, + [SMALL_STATE(613)] = 12235, + [SMALL_STATE(614)] = 12348, + [SMALL_STATE(615)] = 12461, + [SMALL_STATE(616)] = 12574, + [SMALL_STATE(617)] = 12687, + [SMALL_STATE(618)] = 12800, + [SMALL_STATE(619)] = 12913, + [SMALL_STATE(620)] = 13026, + [SMALL_STATE(621)] = 13139, + [SMALL_STATE(622)] = 13252, + [SMALL_STATE(623)] = 13365, + [SMALL_STATE(624)] = 13478, + [SMALL_STATE(625)] = 13591, + [SMALL_STATE(626)] = 13704, + [SMALL_STATE(627)] = 13817, + [SMALL_STATE(628)] = 13930, + [SMALL_STATE(629)] = 14043, + [SMALL_STATE(630)] = 14156, + [SMALL_STATE(631)] = 14269, + [SMALL_STATE(632)] = 14382, + [SMALL_STATE(633)] = 14495, + [SMALL_STATE(634)] = 14608, + [SMALL_STATE(635)] = 14721, + [SMALL_STATE(636)] = 14834, + [SMALL_STATE(637)] = 14947, + [SMALL_STATE(638)] = 15060, + [SMALL_STATE(639)] = 15173, + [SMALL_STATE(640)] = 15286, + [SMALL_STATE(641)] = 15399, + [SMALL_STATE(642)] = 15512, + [SMALL_STATE(643)] = 15625, + [SMALL_STATE(644)] = 15738, + [SMALL_STATE(645)] = 15851, + [SMALL_STATE(646)] = 15964, + [SMALL_STATE(647)] = 16077, + [SMALL_STATE(648)] = 16190, + [SMALL_STATE(649)] = 16303, + [SMALL_STATE(650)] = 16416, + [SMALL_STATE(651)] = 16529, + [SMALL_STATE(652)] = 16642, + [SMALL_STATE(653)] = 16755, + [SMALL_STATE(654)] = 16868, + [SMALL_STATE(655)] = 16981, + [SMALL_STATE(656)] = 17094, + [SMALL_STATE(657)] = 17207, + [SMALL_STATE(658)] = 17320, + [SMALL_STATE(659)] = 17433, + [SMALL_STATE(660)] = 17546, + [SMALL_STATE(661)] = 17659, + [SMALL_STATE(662)] = 17772, + [SMALL_STATE(663)] = 17885, + [SMALL_STATE(664)] = 17998, + [SMALL_STATE(665)] = 18111, + [SMALL_STATE(666)] = 18224, + [SMALL_STATE(667)] = 18337, + [SMALL_STATE(668)] = 18450, + [SMALL_STATE(669)] = 18563, + [SMALL_STATE(670)] = 18657, + [SMALL_STATE(671)] = 18768, + [SMALL_STATE(672)] = 18879, + [SMALL_STATE(673)] = 18950, + [SMALL_STATE(674)] = 19029, + [SMALL_STATE(675)] = 19140, + [SMALL_STATE(676)] = 19219, + [SMALL_STATE(677)] = 19330, + [SMALL_STATE(678)] = 19407, + [SMALL_STATE(679)] = 19481, + [SMALL_STATE(680)] = 19550, + [SMALL_STATE(681)] = 19619, + [SMALL_STATE(682)] = 19688, + [SMALL_STATE(683)] = 19756, + [SMALL_STATE(684)] = 19824, + [SMALL_STATE(685)] = 19892, + [SMALL_STATE(686)] = 19960, + [SMALL_STATE(687)] = 20028, + [SMALL_STATE(688)] = 20096, + [SMALL_STATE(689)] = 20164, + [SMALL_STATE(690)] = 20232, + [SMALL_STATE(691)] = 20300, + [SMALL_STATE(692)] = 20368, + [SMALL_STATE(693)] = 20447, + [SMALL_STATE(694)] = 20518, + [SMALL_STATE(695)] = 20583, + [SMALL_STATE(696)] = 20648, + [SMALL_STATE(697)] = 20713, + [SMALL_STATE(698)] = 20778, + [SMALL_STATE(699)] = 20882, + [SMALL_STATE(700)] = 20946, + [SMALL_STATE(701)] = 21010, + [SMALL_STATE(702)] = 21114, + [SMALL_STATE(703)] = 21218, + [SMALL_STATE(704)] = 21322, + [SMALL_STATE(705)] = 21386, + [SMALL_STATE(706)] = 21490, + [SMALL_STATE(707)] = 21554, + [SMALL_STATE(708)] = 21658, + [SMALL_STATE(709)] = 21762, + [SMALL_STATE(710)] = 21866, + [SMALL_STATE(711)] = 21970, + [SMALL_STATE(712)] = 22072, + [SMALL_STATE(713)] = 22136, + [SMALL_STATE(714)] = 22200, + [SMALL_STATE(715)] = 22304, + [SMALL_STATE(716)] = 22368, + [SMALL_STATE(717)] = 22432, + [SMALL_STATE(718)] = 22496, + [SMALL_STATE(719)] = 22600, + [SMALL_STATE(720)] = 22664, + [SMALL_STATE(721)] = 22728, + [SMALL_STATE(722)] = 22792, + [SMALL_STATE(723)] = 22896, + [SMALL_STATE(724)] = 23000, + [SMALL_STATE(725)] = 23064, + [SMALL_STATE(726)] = 23128, + [SMALL_STATE(727)] = 23232, + [SMALL_STATE(728)] = 23336, + [SMALL_STATE(729)] = 23440, + [SMALL_STATE(730)] = 23544, + [SMALL_STATE(731)] = 23608, + [SMALL_STATE(732)] = 23672, + [SMALL_STATE(733)] = 23736, + [SMALL_STATE(734)] = 23800, + [SMALL_STATE(735)] = 23864, + [SMALL_STATE(736)] = 23963, + [SMALL_STATE(737)] = 24034, + [SMALL_STATE(738)] = 24135, + [SMALL_STATE(739)] = 24208, + [SMALL_STATE(740)] = 24281, + [SMALL_STATE(741)] = 24344, + [SMALL_STATE(742)] = 24443, + [SMALL_STATE(743)] = 24510, + [SMALL_STATE(744)] = 24583, + [SMALL_STATE(745)] = 24646, + [SMALL_STATE(746)] = 24709, + [SMALL_STATE(747)] = 24772, + [SMALL_STATE(748)] = 24845, + [SMALL_STATE(749)] = 24908, + [SMALL_STATE(750)] = 24981, + [SMALL_STATE(751)] = 25052, + [SMALL_STATE(752)] = 25122, + [SMALL_STATE(753)] = 25187, + [SMALL_STATE(754)] = 25279, + [SMALL_STATE(755)] = 25371, + [SMALL_STATE(756)] = 25463, + [SMALL_STATE(757)] = 25555, + [SMALL_STATE(758)] = 25647, + [SMALL_STATE(759)] = 25739, + [SMALL_STATE(760)] = 25831, + [SMALL_STATE(761)] = 25923, + [SMALL_STATE(762)] = 25982, + [SMALL_STATE(763)] = 26041, + [SMALL_STATE(764)] = 26110, + [SMALL_STATE(765)] = 26179, + [SMALL_STATE(766)] = 26246, + [SMALL_STATE(767)] = 26335, + [SMALL_STATE(768)] = 26402, + [SMALL_STATE(769)] = 26461, + [SMALL_STATE(770)] = 26530, + [SMALL_STATE(771)] = 26599, + [SMALL_STATE(772)] = 26668, + [SMALL_STATE(773)] = 26735, + [SMALL_STATE(774)] = 26794, + [SMALL_STATE(775)] = 26861, + [SMALL_STATE(776)] = 26928, + [SMALL_STATE(777)] = 26997, + [SMALL_STATE(778)] = 27055, + [SMALL_STATE(779)] = 27141, + [SMALL_STATE(780)] = 27207, + [SMALL_STATE(781)] = 27285, + [SMALL_STATE(782)] = 27343, + [SMALL_STATE(783)] = 27401, + [SMALL_STATE(784)] = 27493, + [SMALL_STATE(785)] = 27551, + [SMALL_STATE(786)] = 27609, + [SMALL_STATE(787)] = 27697, + [SMALL_STATE(788)] = 27781, + [SMALL_STATE(789)] = 27851, + [SMALL_STATE(790)] = 27943, + [SMALL_STATE(791)] = 28025, + [SMALL_STATE(792)] = 28117, + [SMALL_STATE(793)] = 28189, + [SMALL_STATE(794)] = 28269, + [SMALL_STATE(795)] = 28343, + [SMALL_STATE(796)] = 28404, + [SMALL_STATE(797)] = 28487, + [SMALL_STATE(798)] = 28574, + [SMALL_STATE(799)] = 28647, + [SMALL_STATE(800)] = 28726, + [SMALL_STATE(801)] = 28795, + [SMALL_STATE(802)] = 28876, + [SMALL_STATE(803)] = 28937, + [SMALL_STATE(804)] = 29022, + [SMALL_STATE(805)] = 29083, + [SMALL_STATE(806)] = 29160, + [SMALL_STATE(807)] = 29233, + [SMALL_STATE(808)] = 29294, + [SMALL_STATE(809)] = 29367, + [SMALL_STATE(810)] = 29440, + [SMALL_STATE(811)] = 29501, + [SMALL_STATE(812)] = 29562, + [SMALL_STATE(813)] = 29635, + [SMALL_STATE(814)] = 29726, + [SMALL_STATE(815)] = 29787, + [SMALL_STATE(816)] = 29858, + [SMALL_STATE(817)] = 29949, + [SMALL_STATE(818)] = 30010, + [SMALL_STATE(819)] = 30071, + [SMALL_STATE(820)] = 30132, + [SMALL_STATE(821)] = 30223, + [SMALL_STATE(822)] = 30284, + [SMALL_STATE(823)] = 30343, + [SMALL_STATE(824)] = 30407, + [SMALL_STATE(825)] = 30463, + [SMALL_STATE(826)] = 30519, + [SMALL_STATE(827)] = 30579, + [SMALL_STATE(828)] = 30635, + [SMALL_STATE(829)] = 30691, + [SMALL_STATE(830)] = 30747, + [SMALL_STATE(831)] = 30803, + [SMALL_STATE(832)] = 30859, + [SMALL_STATE(833)] = 30915, + [SMALL_STATE(834)] = 30971, + [SMALL_STATE(835)] = 31031, + [SMALL_STATE(836)] = 31087, + [SMALL_STATE(837)] = 31143, + [SMALL_STATE(838)] = 31199, + [SMALL_STATE(839)] = 31255, + [SMALL_STATE(840)] = 31311, + [SMALL_STATE(841)] = 31367, + [SMALL_STATE(842)] = 31423, + [SMALL_STATE(843)] = 31479, + [SMALL_STATE(844)] = 31535, + [SMALL_STATE(845)] = 31591, + [SMALL_STATE(846)] = 31651, + [SMALL_STATE(847)] = 31711, + [SMALL_STATE(848)] = 31773, + [SMALL_STATE(849)] = 31833, + [SMALL_STATE(850)] = 31889, + [SMALL_STATE(851)] = 31945, + [SMALL_STATE(852)] = 32001, + [SMALL_STATE(853)] = 32057, + [SMALL_STATE(854)] = 32113, + [SMALL_STATE(855)] = 32169, + [SMALL_STATE(856)] = 32231, + [SMALL_STATE(857)] = 32291, + [SMALL_STATE(858)] = 32351, + [SMALL_STATE(859)] = 32407, + [SMALL_STATE(860)] = 32463, + [SMALL_STATE(861)] = 32523, + [SMALL_STATE(862)] = 32579, + [SMALL_STATE(863)] = 32634, + [SMALL_STATE(864)] = 32689, + [SMALL_STATE(865)] = 32744, + [SMALL_STATE(866)] = 32799, + [SMALL_STATE(867)] = 32854, + [SMALL_STATE(868)] = 32909, + [SMALL_STATE(869)] = 32964, + [SMALL_STATE(870)] = 33019, + [SMALL_STATE(871)] = 33074, + [SMALL_STATE(872)] = 33129, + [SMALL_STATE(873)] = 33184, + [SMALL_STATE(874)] = 33239, + [SMALL_STATE(875)] = 33294, + [SMALL_STATE(876)] = 33349, + [SMALL_STATE(877)] = 33404, + [SMALL_STATE(878)] = 33459, + [SMALL_STATE(879)] = 33514, + [SMALL_STATE(880)] = 33569, + [SMALL_STATE(881)] = 33624, + [SMALL_STATE(882)] = 33679, + [SMALL_STATE(883)] = 33743, + [SMALL_STATE(884)] = 33815, + [SMALL_STATE(885)] = 33887, + [SMALL_STATE(886)] = 33959, + [SMALL_STATE(887)] = 34031, + [SMALL_STATE(888)] = 34120, + [SMALL_STATE(889)] = 34185, + [SMALL_STATE(890)] = 34256, + [SMALL_STATE(891)] = 34315, + [SMALL_STATE(892)] = 34382, + [SMALL_STATE(893)] = 34467, + [SMALL_STATE(894)] = 34532, + [SMALL_STATE(895)] = 34597, + [SMALL_STATE(896)] = 34686, + [SMALL_STATE(897)] = 34775, + [SMALL_STATE(898)] = 34838, + [SMALL_STATE(899)] = 34903, + [SMALL_STATE(900)] = 34964, + [SMALL_STATE(901)] = 35039, + [SMALL_STATE(902)] = 35104, + [SMALL_STATE(903)] = 35173, + [SMALL_STATE(904)] = 35232, + [SMALL_STATE(905)] = 35315, + [SMALL_STATE(906)] = 35404, + [SMALL_STATE(907)] = 35485, + [SMALL_STATE(908)] = 35574, + [SMALL_STATE(909)] = 35653, + [SMALL_STATE(910)] = 35730, + [SMALL_STATE(911)] = 35782, + [SMALL_STATE(912)] = 35834, + [SMALL_STATE(913)] = 35886, + [SMALL_STATE(914)] = 35938, + [SMALL_STATE(915)] = 35994, + [SMALL_STATE(916)] = 36046, + [SMALL_STATE(917)] = 36098, + [SMALL_STATE(918)] = 36149, + [SMALL_STATE(919)] = 36200, + [SMALL_STATE(920)] = 36251, + [SMALL_STATE(921)] = 36302, + [SMALL_STATE(922)] = 36353, + [SMALL_STATE(923)] = 36404, + [SMALL_STATE(924)] = 36455, + [SMALL_STATE(925)] = 36506, + [SMALL_STATE(926)] = 36561, + [SMALL_STATE(927)] = 36612, + [SMALL_STATE(928)] = 36663, + [SMALL_STATE(929)] = 36718, + [SMALL_STATE(930)] = 36769, + [SMALL_STATE(931)] = 36820, + [SMALL_STATE(932)] = 36871, + [SMALL_STATE(933)] = 36922, + [SMALL_STATE(934)] = 36973, + [SMALL_STATE(935)] = 37024, + [SMALL_STATE(936)] = 37075, + [SMALL_STATE(937)] = 37130, + [SMALL_STATE(938)] = 37181, + [SMALL_STATE(939)] = 37232, + [SMALL_STATE(940)] = 37283, + [SMALL_STATE(941)] = 37334, + [SMALL_STATE(942)] = 37385, + [SMALL_STATE(943)] = 37436, + [SMALL_STATE(944)] = 37487, + [SMALL_STATE(945)] = 37538, + [SMALL_STATE(946)] = 37589, + [SMALL_STATE(947)] = 37644, + [SMALL_STATE(948)] = 37695, + [SMALL_STATE(949)] = 37746, + [SMALL_STATE(950)] = 37797, + [SMALL_STATE(951)] = 37848, + [SMALL_STATE(952)] = 37899, + [SMALL_STATE(953)] = 37950, + [SMALL_STATE(954)] = 38001, + [SMALL_STATE(955)] = 38052, + [SMALL_STATE(956)] = 38103, + [SMALL_STATE(957)] = 38158, + [SMALL_STATE(958)] = 38209, + [SMALL_STATE(959)] = 38260, + [SMALL_STATE(960)] = 38311, + [SMALL_STATE(961)] = 38366, + [SMALL_STATE(962)] = 38421, + [SMALL_STATE(963)] = 38472, + [SMALL_STATE(964)] = 38523, + [SMALL_STATE(965)] = 38573, + [SMALL_STATE(966)] = 38623, + [SMALL_STATE(967)] = 38673, + [SMALL_STATE(968)] = 38723, + [SMALL_STATE(969)] = 38773, + [SMALL_STATE(970)] = 38823, + [SMALL_STATE(971)] = 38873, + [SMALL_STATE(972)] = 38923, + [SMALL_STATE(973)] = 38973, + [SMALL_STATE(974)] = 39023, + [SMALL_STATE(975)] = 39102, + [SMALL_STATE(976)] = 39163, + [SMALL_STATE(977)] = 39242, + [SMALL_STATE(978)] = 39321, + [SMALL_STATE(979)] = 39400, + [SMALL_STATE(980)] = 39449, + [SMALL_STATE(981)] = 39507, + [SMALL_STATE(982)] = 39563, + [SMALL_STATE(983)] = 39646, + [SMALL_STATE(984)] = 39725, + [SMALL_STATE(985)] = 39788, + [SMALL_STATE(986)] = 39871, + [SMALL_STATE(987)] = 39936, + [SMALL_STATE(988)] = 39997, + [SMALL_STATE(989)] = 40066, + [SMALL_STATE(990)] = 40137, + [SMALL_STATE(991)] = 40220, + [SMALL_STATE(992)] = 40293, + [SMALL_STATE(993)] = 40368, + [SMALL_STATE(994)] = 40445, + [SMALL_STATE(995)] = 40528, + [SMALL_STATE(996)] = 40604, + [SMALL_STATE(997)] = 40650, + [SMALL_STATE(998)] = 40698, + [SMALL_STATE(999)] = 40778, + [SMALL_STATE(1000)] = 40824, + [SMALL_STATE(1001)] = 40870, + [SMALL_STATE(1002)] = 40918, + [SMALL_STATE(1003)] = 40998, + [SMALL_STATE(1004)] = 41044, + [SMALL_STATE(1005)] = 41090, + [SMALL_STATE(1006)] = 41138, + [SMALL_STATE(1007)] = 41184, + [SMALL_STATE(1008)] = 41230, + [SMALL_STATE(1009)] = 41292, + [SMALL_STATE(1010)] = 41340, + [SMALL_STATE(1011)] = 41386, + [SMALL_STATE(1012)] = 41432, + [SMALL_STATE(1013)] = 41512, + [SMALL_STATE(1014)] = 41558, + [SMALL_STATE(1015)] = 41604, + [SMALL_STATE(1016)] = 41664, + [SMALL_STATE(1017)] = 41710, + [SMALL_STATE(1018)] = 41784, + [SMALL_STATE(1019)] = 41830, + [SMALL_STATE(1020)] = 41894, + [SMALL_STATE(1021)] = 41968, + [SMALL_STATE(1022)] = 42040, + [SMALL_STATE(1023)] = 42086, + [SMALL_STATE(1024)] = 42154, + [SMALL_STATE(1025)] = 42224, + [SMALL_STATE(1026)] = 42295, + [SMALL_STATE(1027)] = 42370, + [SMALL_STATE(1028)] = 42441, + [SMALL_STATE(1029)] = 42516, + [SMALL_STATE(1030)] = 42586, + [SMALL_STATE(1031)] = 42630, + [SMALL_STATE(1032)] = 42674, + [SMALL_STATE(1033)] = 42726, + [SMALL_STATE(1034)] = 42770, + [SMALL_STATE(1035)] = 42814, + [SMALL_STATE(1036)] = 42884, + [SMALL_STATE(1037)] = 42954, + [SMALL_STATE(1038)] = 43024, + [SMALL_STATE(1039)] = 43094, + [SMALL_STATE(1040)] = 43164, + [SMALL_STATE(1041)] = 43234, + [SMALL_STATE(1042)] = 43304, + [SMALL_STATE(1043)] = 43384, + [SMALL_STATE(1044)] = 43465, + [SMALL_STATE(1045)] = 43546, + [SMALL_STATE(1046)] = 43627, + [SMALL_STATE(1047)] = 43708, + [SMALL_STATE(1048)] = 43789, + [SMALL_STATE(1049)] = 43866, + [SMALL_STATE(1050)] = 43947, + [SMALL_STATE(1051)] = 44025, + [SMALL_STATE(1052)] = 44103, + [SMALL_STATE(1053)] = 44167, + [SMALL_STATE(1054)] = 44231, + [SMALL_STATE(1055)] = 44295, + [SMALL_STATE(1056)] = 44359, + [SMALL_STATE(1057)] = 44423, + [SMALL_STATE(1058)] = 44501, + [SMALL_STATE(1059)] = 44565, + [SMALL_STATE(1060)] = 44643, + [SMALL_STATE(1061)] = 44721, + [SMALL_STATE(1062)] = 44799, + [SMALL_STATE(1063)] = 44863, + [SMALL_STATE(1064)] = 44941, + [SMALL_STATE(1065)] = 45017, + [SMALL_STATE(1066)] = 45095, + [SMALL_STATE(1067)] = 45173, + [SMALL_STATE(1068)] = 45249, + [SMALL_STATE(1069)] = 45327, + [SMALL_STATE(1070)] = 45405, + [SMALL_STATE(1071)] = 45483, + [SMALL_STATE(1072)] = 45561, + [SMALL_STATE(1073)] = 45621, + [SMALL_STATE(1074)] = 45685, + [SMALL_STATE(1075)] = 45747, + [SMALL_STATE(1076)] = 45813, + [SMALL_STATE(1077)] = 45891, + [SMALL_STATE(1078)] = 45959, + [SMALL_STATE(1079)] = 46029, + [SMALL_STATE(1080)] = 46105, + [SMALL_STATE(1081)] = 46181, + [SMALL_STATE(1082)] = 46257, + [SMALL_STATE(1083)] = 46333, + [SMALL_STATE(1084)] = 46411, + [SMALL_STATE(1085)] = 46489, + [SMALL_STATE(1086)] = 46567, + [SMALL_STATE(1087)] = 46639, + [SMALL_STATE(1088)] = 46711, + [SMALL_STATE(1089)] = 46785, + [SMALL_STATE(1090)] = 46863, + [SMALL_STATE(1091)] = 46921, + [SMALL_STATE(1092)] = 46999, + [SMALL_STATE(1093)] = 47079, + [SMALL_STATE(1094)] = 47155, + [SMALL_STATE(1095)] = 47233, + [SMALL_STATE(1096)] = 47309, + [SMALL_STATE(1097)] = 47373, + [SMALL_STATE(1098)] = 47451, + [SMALL_STATE(1099)] = 47515, + [SMALL_STATE(1100)] = 47593, + [SMALL_STATE(1101)] = 47671, + [SMALL_STATE(1102)] = 47735, + [SMALL_STATE(1103)] = 47813, + [SMALL_STATE(1104)] = 47891, + [SMALL_STATE(1105)] = 47969, + [SMALL_STATE(1106)] = 48047, + [SMALL_STATE(1107)] = 48111, + [SMALL_STATE(1108)] = 48175, + [SMALL_STATE(1109)] = 48253, + [SMALL_STATE(1110)] = 48331, + [SMALL_STATE(1111)] = 48406, + [SMALL_STATE(1112)] = 48481, + [SMALL_STATE(1113)] = 48556, + [SMALL_STATE(1114)] = 48617, + [SMALL_STATE(1115)] = 48658, + [SMALL_STATE(1116)] = 48733, + [SMALL_STATE(1117)] = 48774, + [SMALL_STATE(1118)] = 48815, + [SMALL_STATE(1119)] = 48890, + [SMALL_STATE(1120)] = 48935, + [SMALL_STATE(1121)] = 49010, + [SMALL_STATE(1122)] = 49085, + [SMALL_STATE(1123)] = 49146, + [SMALL_STATE(1124)] = 49221, + [SMALL_STATE(1125)] = 49282, + [SMALL_STATE(1126)] = 49343, + [SMALL_STATE(1127)] = 49418, + [SMALL_STATE(1128)] = 49479, + [SMALL_STATE(1129)] = 49554, + [SMALL_STATE(1130)] = 49615, + [SMALL_STATE(1131)] = 49690, + [SMALL_STATE(1132)] = 49765, + [SMALL_STATE(1133)] = 49840, + [SMALL_STATE(1134)] = 49915, + [SMALL_STATE(1135)] = 49990, + [SMALL_STATE(1136)] = 50065, + [SMALL_STATE(1137)] = 50140, + [SMALL_STATE(1138)] = 50215, + [SMALL_STATE(1139)] = 50290, + [SMALL_STATE(1140)] = 50365, + [SMALL_STATE(1141)] = 50413, + [SMALL_STATE(1142)] = 50485, + [SMALL_STATE(1143)] = 50535, + [SMALL_STATE(1144)] = 50577, + [SMALL_STATE(1145)] = 50616, + [SMALL_STATE(1146)] = 50658, + [SMALL_STATE(1147)] = 50700, + [SMALL_STATE(1148)] = 50742, + [SMALL_STATE(1149)] = 50797, + [SMALL_STATE(1150)] = 50852, + [SMALL_STATE(1151)] = 50907, + [SMALL_STATE(1152)] = 50962, + [SMALL_STATE(1153)] = 51017, + [SMALL_STATE(1154)] = 51072, + [SMALL_STATE(1155)] = 51127, + [SMALL_STATE(1156)] = 51179, + [SMALL_STATE(1157)] = 51231, + [SMALL_STATE(1158)] = 51291, + [SMALL_STATE(1159)] = 51343, + [SMALL_STATE(1160)] = 51387, + [SMALL_STATE(1161)] = 51447, + [SMALL_STATE(1162)] = 51507, + [SMALL_STATE(1163)] = 51549, + [SMALL_STATE(1164)] = 51601, + [SMALL_STATE(1165)] = 51641, + [SMALL_STATE(1166)] = 51693, + [SMALL_STATE(1167)] = 51745, + [SMALL_STATE(1168)] = 51805, + [SMALL_STATE(1169)] = 51866, + [SMALL_STATE(1170)] = 51923, + [SMALL_STATE(1171)] = 51980, + [SMALL_STATE(1172)] = 52037, + [SMALL_STATE(1173)] = 52088, + [SMALL_STATE(1174)] = 52149, + [SMALL_STATE(1175)] = 52206, + [SMALL_STATE(1176)] = 52263, + [SMALL_STATE(1177)] = 52324, + [SMALL_STATE(1178)] = 52363, + [SMALL_STATE(1179)] = 52420, + [SMALL_STATE(1180)] = 52477, + [SMALL_STATE(1181)] = 52528, + [SMALL_STATE(1182)] = 52585, + [SMALL_STATE(1183)] = 52642, + [SMALL_STATE(1184)] = 52693, + [SMALL_STATE(1185)] = 52750, + [SMALL_STATE(1186)] = 52807, + [SMALL_STATE(1187)] = 52855, + [SMALL_STATE(1188)] = 52889, + [SMALL_STATE(1189)] = 52929, + [SMALL_STATE(1190)] = 52969, + [SMALL_STATE(1191)] = 53017, + [SMALL_STATE(1192)] = 53065, + [SMALL_STATE(1193)] = 53105, + [SMALL_STATE(1194)] = 53147, + [SMALL_STATE(1195)] = 53193, + [SMALL_STATE(1196)] = 53241, + [SMALL_STATE(1197)] = 53289, + [SMALL_STATE(1198)] = 53337, + [SMALL_STATE(1199)] = 53385, + [SMALL_STATE(1200)] = 53433, + [SMALL_STATE(1201)] = 53481, + [SMALL_STATE(1202)] = 53529, + [SMALL_STATE(1203)] = 53577, + [SMALL_STATE(1204)] = 53625, + [SMALL_STATE(1205)] = 53673, + [SMALL_STATE(1206)] = 53721, + [SMALL_STATE(1207)] = 53755, + [SMALL_STATE(1208)] = 53803, + [SMALL_STATE(1209)] = 53853, + [SMALL_STATE(1210)] = 53905, + [SMALL_STATE(1211)] = 53957, + [SMALL_STATE(1212)] = 54005, + [SMALL_STATE(1213)] = 54053, + [SMALL_STATE(1214)] = 54107, + [SMALL_STATE(1215)] = 54141, + [SMALL_STATE(1216)] = 54179, + [SMALL_STATE(1217)] = 54213, + [SMALL_STATE(1218)] = 54261, + [SMALL_STATE(1219)] = 54295, + [SMALL_STATE(1220)] = 54343, + [SMALL_STATE(1221)] = 54383, + [SMALL_STATE(1222)] = 54437, + [SMALL_STATE(1223)] = 54485, + [SMALL_STATE(1224)] = 54533, + [SMALL_STATE(1225)] = 54589, + [SMALL_STATE(1226)] = 54637, + [SMALL_STATE(1227)] = 54685, + [SMALL_STATE(1228)] = 54733, + [SMALL_STATE(1229)] = 54773, + [SMALL_STATE(1230)] = 54821, + [SMALL_STATE(1231)] = 54869, + [SMALL_STATE(1232)] = 54903, + [SMALL_STATE(1233)] = 54951, + [SMALL_STATE(1234)] = 54985, + [SMALL_STATE(1235)] = 55033, + [SMALL_STATE(1236)] = 55081, + [SMALL_STATE(1237)] = 55129, + [SMALL_STATE(1238)] = 55177, + [SMALL_STATE(1239)] = 55225, + [SMALL_STATE(1240)] = 55273, + [SMALL_STATE(1241)] = 55321, + [SMALL_STATE(1242)] = 55369, + [SMALL_STATE(1243)] = 55417, + [SMALL_STATE(1244)] = 55465, + [SMALL_STATE(1245)] = 55513, + [SMALL_STATE(1246)] = 55561, + [SMALL_STATE(1247)] = 55609, + [SMALL_STATE(1248)] = 55646, + [SMALL_STATE(1249)] = 55679, + [SMALL_STATE(1250)] = 55712, + [SMALL_STATE(1251)] = 55753, + [SMALL_STATE(1252)] = 55790, + [SMALL_STATE(1253)] = 55845, + [SMALL_STATE(1254)] = 55878, + [SMALL_STATE(1255)] = 55911, + [SMALL_STATE(1256)] = 55948, + [SMALL_STATE(1257)] = 55985, + [SMALL_STATE(1258)] = 56036, + [SMALL_STATE(1259)] = 56069, + [SMALL_STATE(1260)] = 56102, + [SMALL_STATE(1261)] = 56139, + [SMALL_STATE(1262)] = 56176, + [SMALL_STATE(1263)] = 56209, + [SMALL_STATE(1264)] = 56246, + [SMALL_STATE(1265)] = 56283, + [SMALL_STATE(1266)] = 56318, + [SMALL_STATE(1267)] = 56369, + [SMALL_STATE(1268)] = 56416, + [SMALL_STATE(1269)] = 56449, + [SMALL_STATE(1270)] = 56482, + [SMALL_STATE(1271)] = 56533, + [SMALL_STATE(1272)] = 56572, + [SMALL_STATE(1273)] = 56621, + [SMALL_STATE(1274)] = 56672, + [SMALL_STATE(1275)] = 56721, + [SMALL_STATE(1276)] = 56772, + [SMALL_STATE(1277)] = 56821, + [SMALL_STATE(1278)] = 56854, + [SMALL_STATE(1279)] = 56903, + [SMALL_STATE(1280)] = 56954, + [SMALL_STATE(1281)] = 57005, + [SMALL_STATE(1282)] = 57056, + [SMALL_STATE(1283)] = 57107, + [SMALL_STATE(1284)] = 57152, + [SMALL_STATE(1285)] = 57203, + [SMALL_STATE(1286)] = 57254, + [SMALL_STATE(1287)] = 57305, + [SMALL_STATE(1288)] = 57356, + [SMALL_STATE(1289)] = 57407, + [SMALL_STATE(1290)] = 57450, + [SMALL_STATE(1291)] = 57487, + [SMALL_STATE(1292)] = 57538, + [SMALL_STATE(1293)] = 57593, + [SMALL_STATE(1294)] = 57634, + [SMALL_STATE(1295)] = 57683, + [SMALL_STATE(1296)] = 57722, + [SMALL_STATE(1297)] = 57755, + [SMALL_STATE(1298)] = 57801, + [SMALL_STATE(1299)] = 57847, + [SMALL_STATE(1300)] = 57897, + [SMALL_STATE(1301)] = 57943, + [SMALL_STATE(1302)] = 57989, + [SMALL_STATE(1303)] = 58035, + [SMALL_STATE(1304)] = 58081, + [SMALL_STATE(1305)] = 58128, + [SMALL_STATE(1306)] = 58175, + [SMALL_STATE(1307)] = 58222, + [SMALL_STATE(1308)] = 58269, + [SMALL_STATE(1309)] = 58316, + [SMALL_STATE(1310)] = 58363, + [SMALL_STATE(1311)] = 58410, + [SMALL_STATE(1312)] = 58457, + [SMALL_STATE(1313)] = 58498, + [SMALL_STATE(1314)] = 58540, + [SMALL_STATE(1315)] = 58588, + [SMALL_STATE(1316)] = 58632, + [SMALL_STATE(1317)] = 58676, + [SMALL_STATE(1318)] = 58713, + [SMALL_STATE(1319)] = 58750, + [SMALL_STATE(1320)] = 58795, + [SMALL_STATE(1321)] = 58832, + [SMALL_STATE(1322)] = 58877, + [SMALL_STATE(1323)] = 58924, + [SMALL_STATE(1324)] = 58969, + [SMALL_STATE(1325)] = 59004, + [SMALL_STATE(1326)] = 59049, + [SMALL_STATE(1327)] = 59096, + [SMALL_STATE(1328)] = 59141, + [SMALL_STATE(1329)] = 59188, + [SMALL_STATE(1330)] = 59220, + [SMALL_STATE(1331)] = 59257, + [SMALL_STATE(1332)] = 59300, + [SMALL_STATE(1333)] = 59337, + [SMALL_STATE(1334)] = 59380, + [SMALL_STATE(1335)] = 59423, + [SMALL_STATE(1336)] = 59466, + [SMALL_STATE(1337)] = 59509, + [SMALL_STATE(1338)] = 59550, + [SMALL_STATE(1339)] = 59593, + [SMALL_STATE(1340)] = 59620, + [SMALL_STATE(1341)] = 59647, + [SMALL_STATE(1342)] = 59690, + [SMALL_STATE(1343)] = 59727, + [SMALL_STATE(1344)] = 59758, + [SMALL_STATE(1345)] = 59795, + [SMALL_STATE(1346)] = 59822, + [SMALL_STATE(1347)] = 59865, + [SMALL_STATE(1348)] = 59908, + [SMALL_STATE(1349)] = 59951, + [SMALL_STATE(1350)] = 59994, + [SMALL_STATE(1351)] = 60035, + [SMALL_STATE(1352)] = 60067, + [SMALL_STATE(1353)] = 60111, + [SMALL_STATE(1354)] = 60137, + [SMALL_STATE(1355)] = 60174, + [SMALL_STATE(1356)] = 60211, + [SMALL_STATE(1357)] = 60246, + [SMALL_STATE(1358)] = 60281, + [SMALL_STATE(1359)] = 60316, + [SMALL_STATE(1360)] = 60351, + [SMALL_STATE(1361)] = 60386, + [SMALL_STATE(1362)] = 60421, + [SMALL_STATE(1363)] = 60456, + [SMALL_STATE(1364)] = 60489, + [SMALL_STATE(1365)] = 60526, + [SMALL_STATE(1366)] = 60563, + [SMALL_STATE(1367)] = 60598, + [SMALL_STATE(1368)] = 60633, + [SMALL_STATE(1369)] = 60668, + [SMALL_STATE(1370)] = 60699, + [SMALL_STATE(1371)] = 60736, + [SMALL_STATE(1372)] = 60773, + [SMALL_STATE(1373)] = 60810, + [SMALL_STATE(1374)] = 60847, + [SMALL_STATE(1375)] = 60884, + [SMALL_STATE(1376)] = 60921, + [SMALL_STATE(1377)] = 60956, + [SMALL_STATE(1378)] = 60995, + [SMALL_STATE(1379)] = 61030, + [SMALL_STATE(1380)] = 61067, + [SMALL_STATE(1381)] = 61104, + [SMALL_STATE(1382)] = 61141, + [SMALL_STATE(1383)] = 61178, + [SMALL_STATE(1384)] = 61218, + [SMALL_STATE(1385)] = 61242, + [SMALL_STATE(1386)] = 61272, + [SMALL_STATE(1387)] = 61306, + [SMALL_STATE(1388)] = 61330, + [SMALL_STATE(1389)] = 61354, + [SMALL_STATE(1390)] = 61384, + [SMALL_STATE(1391)] = 61418, + [SMALL_STATE(1392)] = 61442, + [SMALL_STATE(1393)] = 61466, + [SMALL_STATE(1394)] = 61490, + [SMALL_STATE(1395)] = 61530, + [SMALL_STATE(1396)] = 61560, + [SMALL_STATE(1397)] = 61600, + [SMALL_STATE(1398)] = 61634, + [SMALL_STATE(1399)] = 61658, + [SMALL_STATE(1400)] = 61696, + [SMALL_STATE(1401)] = 61730, + [SMALL_STATE(1402)] = 61770, + [SMALL_STATE(1403)] = 61807, + [SMALL_STATE(1404)] = 61844, + [SMALL_STATE(1405)] = 61881, + [SMALL_STATE(1406)] = 61908, + [SMALL_STATE(1407)] = 61945, + [SMALL_STATE(1408)] = 61970, + [SMALL_STATE(1409)] = 61997, + [SMALL_STATE(1410)] = 62026, + [SMALL_STATE(1411)] = 62063, + [SMALL_STATE(1412)] = 62100, + [SMALL_STATE(1413)] = 62127, + [SMALL_STATE(1414)] = 62160, + [SMALL_STATE(1415)] = 62197, + [SMALL_STATE(1416)] = 62224, + [SMALL_STATE(1417)] = 62253, + [SMALL_STATE(1418)] = 62290, + [SMALL_STATE(1419)] = 62319, + [SMALL_STATE(1420)] = 62350, + [SMALL_STATE(1421)] = 62379, + [SMALL_STATE(1422)] = 62401, + [SMALL_STATE(1423)] = 62423, + [SMALL_STATE(1424)] = 62457, + [SMALL_STATE(1425)] = 62491, + [SMALL_STATE(1426)] = 62517, + [SMALL_STATE(1427)] = 62551, + [SMALL_STATE(1428)] = 62577, + [SMALL_STATE(1429)] = 62603, + [SMALL_STATE(1430)] = 62625, + [SMALL_STATE(1431)] = 62659, + [SMALL_STATE(1432)] = 62693, + [SMALL_STATE(1433)] = 62727, + [SMALL_STATE(1434)] = 62759, + [SMALL_STATE(1435)] = 62781, + [SMALL_STATE(1436)] = 62805, + [SMALL_STATE(1437)] = 62827, + [SMALL_STATE(1438)] = 62849, + [SMALL_STATE(1439)] = 62871, + [SMALL_STATE(1440)] = 62905, + [SMALL_STATE(1441)] = 62927, + [SMALL_STATE(1442)] = 62961, + [SMALL_STATE(1443)] = 62995, + [SMALL_STATE(1444)] = 63029, + [SMALL_STATE(1445)] = 63063, + [SMALL_STATE(1446)] = 63085, + [SMALL_STATE(1447)] = 63119, + [SMALL_STATE(1448)] = 63145, + [SMALL_STATE(1449)] = 63170, + [SMALL_STATE(1450)] = 63191, + [SMALL_STATE(1451)] = 63222, + [SMALL_STATE(1452)] = 63243, + [SMALL_STATE(1453)] = 63274, + [SMALL_STATE(1454)] = 63295, + [SMALL_STATE(1455)] = 63316, + [SMALL_STATE(1456)] = 63337, + [SMALL_STATE(1457)] = 63358, + [SMALL_STATE(1458)] = 63379, + [SMALL_STATE(1459)] = 63402, + [SMALL_STATE(1460)] = 63423, + [SMALL_STATE(1461)] = 63448, + [SMALL_STATE(1462)] = 63471, + [SMALL_STATE(1463)] = 63496, + [SMALL_STATE(1464)] = 63527, + [SMALL_STATE(1465)] = 63548, + [SMALL_STATE(1466)] = 63579, + [SMALL_STATE(1467)] = 63610, + [SMALL_STATE(1468)] = 63637, + [SMALL_STATE(1469)] = 63668, + [SMALL_STATE(1470)] = 63699, + [SMALL_STATE(1471)] = 63720, + [SMALL_STATE(1472)] = 63751, + [SMALL_STATE(1473)] = 63771, + [SMALL_STATE(1474)] = 63791, + [SMALL_STATE(1475)] = 63817, + [SMALL_STATE(1476)] = 63841, + [SMALL_STATE(1477)] = 63861, + [SMALL_STATE(1478)] = 63881, + [SMALL_STATE(1479)] = 63901, + [SMALL_STATE(1480)] = 63927, + [SMALL_STATE(1481)] = 63951, + [SMALL_STATE(1482)] = 63971, + [SMALL_STATE(1483)] = 63991, + [SMALL_STATE(1484)] = 64019, + [SMALL_STATE(1485)] = 64045, + [SMALL_STATE(1486)] = 64071, + [SMALL_STATE(1487)] = 64091, + [SMALL_STATE(1488)] = 64113, + [SMALL_STATE(1489)] = 64133, + [SMALL_STATE(1490)] = 64153, + [SMALL_STATE(1491)] = 64173, + [SMALL_STATE(1492)] = 64197, + [SMALL_STATE(1493)] = 64217, + [SMALL_STATE(1494)] = 64243, + [SMALL_STATE(1495)] = 64267, + [SMALL_STATE(1496)] = 64293, + [SMALL_STATE(1497)] = 64319, + [SMALL_STATE(1498)] = 64339, + [SMALL_STATE(1499)] = 64363, + [SMALL_STATE(1500)] = 64389, + [SMALL_STATE(1501)] = 64413, + [SMALL_STATE(1502)] = 64437, + [SMALL_STATE(1503)] = 64461, + [SMALL_STATE(1504)] = 64487, + [SMALL_STATE(1505)] = 64507, + [SMALL_STATE(1506)] = 64533, + [SMALL_STATE(1507)] = 64553, + [SMALL_STATE(1508)] = 64573, + [SMALL_STATE(1509)] = 64597, + [SMALL_STATE(1510)] = 64617, + [SMALL_STATE(1511)] = 64643, + [SMALL_STATE(1512)] = 64669, + [SMALL_STATE(1513)] = 64686, + [SMALL_STATE(1514)] = 64703, + [SMALL_STATE(1515)] = 64724, + [SMALL_STATE(1516)] = 64741, + [SMALL_STATE(1517)] = 64764, + [SMALL_STATE(1518)] = 64781, + [SMALL_STATE(1519)] = 64806, + [SMALL_STATE(1520)] = 64823, + [SMALL_STATE(1521)] = 64840, + [SMALL_STATE(1522)] = 64857, + [SMALL_STATE(1523)] = 64882, + [SMALL_STATE(1524)] = 64905, + [SMALL_STATE(1525)] = 64926, + [SMALL_STATE(1526)] = 64943, + [SMALL_STATE(1527)] = 64960, + [SMALL_STATE(1528)] = 64977, + [SMALL_STATE(1529)] = 65002, + [SMALL_STATE(1530)] = 65019, + [SMALL_STATE(1531)] = 65036, + [SMALL_STATE(1532)] = 65053, + [SMALL_STATE(1533)] = 65070, + [SMALL_STATE(1534)] = 65090, + [SMALL_STATE(1535)] = 65110, + [SMALL_STATE(1536)] = 65132, + [SMALL_STATE(1537)] = 65154, + [SMALL_STATE(1538)] = 65172, + [SMALL_STATE(1539)] = 65194, + [SMALL_STATE(1540)] = 65216, + [SMALL_STATE(1541)] = 65238, + [SMALL_STATE(1542)] = 65260, + [SMALL_STATE(1543)] = 65282, + [SMALL_STATE(1544)] = 65304, + [SMALL_STATE(1545)] = 65324, + [SMALL_STATE(1546)] = 65346, + [SMALL_STATE(1547)] = 65366, + [SMALL_STATE(1548)] = 65384, + [SMALL_STATE(1549)] = 65406, + [SMALL_STATE(1550)] = 65426, + [SMALL_STATE(1551)] = 65446, + [SMALL_STATE(1552)] = 65468, + [SMALL_STATE(1553)] = 65488, + [SMALL_STATE(1554)] = 65510, + [SMALL_STATE(1555)] = 65532, + [SMALL_STATE(1556)] = 65554, + [SMALL_STATE(1557)] = 65574, + [SMALL_STATE(1558)] = 65594, + [SMALL_STATE(1559)] = 65616, + [SMALL_STATE(1560)] = 65638, + [SMALL_STATE(1561)] = 65660, + [SMALL_STATE(1562)] = 65680, + [SMALL_STATE(1563)] = 65700, + [SMALL_STATE(1564)] = 65722, + [SMALL_STATE(1565)] = 65744, + [SMALL_STATE(1566)] = 65766, + [SMALL_STATE(1567)] = 65788, + [SMALL_STATE(1568)] = 65810, + [SMALL_STATE(1569)] = 65832, + [SMALL_STATE(1570)] = 65854, + [SMALL_STATE(1571)] = 65870, + [SMALL_STATE(1572)] = 65890, + [SMALL_STATE(1573)] = 65910, + [SMALL_STATE(1574)] = 65928, + [SMALL_STATE(1575)] = 65948, + [SMALL_STATE(1576)] = 65970, + [SMALL_STATE(1577)] = 65992, + [SMALL_STATE(1578)] = 66014, + [SMALL_STATE(1579)] = 66032, + [SMALL_STATE(1580)] = 66052, + [SMALL_STATE(1581)] = 66074, + [SMALL_STATE(1582)] = 66094, + [SMALL_STATE(1583)] = 66116, + [SMALL_STATE(1584)] = 66136, + [SMALL_STATE(1585)] = 66152, + [SMALL_STATE(1586)] = 66168, + [SMALL_STATE(1587)] = 66188, + [SMALL_STATE(1588)] = 66210, + [SMALL_STATE(1589)] = 66232, + [SMALL_STATE(1590)] = 66254, + [SMALL_STATE(1591)] = 66272, + [SMALL_STATE(1592)] = 66292, + [SMALL_STATE(1593)] = 66314, + [SMALL_STATE(1594)] = 66332, + [SMALL_STATE(1595)] = 66354, + [SMALL_STATE(1596)] = 66376, + [SMALL_STATE(1597)] = 66398, + [SMALL_STATE(1598)] = 66418, + [SMALL_STATE(1599)] = 66437, + [SMALL_STATE(1600)] = 66456, + [SMALL_STATE(1601)] = 66475, + [SMALL_STATE(1602)] = 66494, + [SMALL_STATE(1603)] = 66509, + [SMALL_STATE(1604)] = 66528, + [SMALL_STATE(1605)] = 66543, + [SMALL_STATE(1606)] = 66560, + [SMALL_STATE(1607)] = 66579, + [SMALL_STATE(1608)] = 66596, + [SMALL_STATE(1609)] = 66615, + [SMALL_STATE(1610)] = 66634, + [SMALL_STATE(1611)] = 66653, + [SMALL_STATE(1612)] = 66672, + [SMALL_STATE(1613)] = 66687, + [SMALL_STATE(1614)] = 66702, + [SMALL_STATE(1615)] = 66721, + [SMALL_STATE(1616)] = 66738, + [SMALL_STATE(1617)] = 66753, + [SMALL_STATE(1618)] = 66772, + [SMALL_STATE(1619)] = 66791, + [SMALL_STATE(1620)] = 66808, + [SMALL_STATE(1621)] = 66827, + [SMALL_STATE(1622)] = 66846, + [SMALL_STATE(1623)] = 66861, + [SMALL_STATE(1624)] = 66880, + [SMALL_STATE(1625)] = 66899, + [SMALL_STATE(1626)] = 66918, + [SMALL_STATE(1627)] = 66937, + [SMALL_STATE(1628)] = 66952, + [SMALL_STATE(1629)] = 66971, + [SMALL_STATE(1630)] = 66990, + [SMALL_STATE(1631)] = 67009, + [SMALL_STATE(1632)] = 67026, + [SMALL_STATE(1633)] = 67045, + [SMALL_STATE(1634)] = 67064, + [SMALL_STATE(1635)] = 67083, + [SMALL_STATE(1636)] = 67098, + [SMALL_STATE(1637)] = 67113, + [SMALL_STATE(1638)] = 67130, + [SMALL_STATE(1639)] = 67145, + [SMALL_STATE(1640)] = 67164, + [SMALL_STATE(1641)] = 67183, + [SMALL_STATE(1642)] = 67200, + [SMALL_STATE(1643)] = 67219, + [SMALL_STATE(1644)] = 67238, + [SMALL_STATE(1645)] = 67257, + [SMALL_STATE(1646)] = 67274, + [SMALL_STATE(1647)] = 67289, + [SMALL_STATE(1648)] = 67308, + [SMALL_STATE(1649)] = 67327, + [SMALL_STATE(1650)] = 67344, + [SMALL_STATE(1651)] = 67363, + [SMALL_STATE(1652)] = 67382, + [SMALL_STATE(1653)] = 67399, + [SMALL_STATE(1654)] = 67418, + [SMALL_STATE(1655)] = 67437, + [SMALL_STATE(1656)] = 67454, + [SMALL_STATE(1657)] = 67473, + [SMALL_STATE(1658)] = 67492, + [SMALL_STATE(1659)] = 67511, + [SMALL_STATE(1660)] = 67530, + [SMALL_STATE(1661)] = 67549, + [SMALL_STATE(1662)] = 67568, + [SMALL_STATE(1663)] = 67587, + [SMALL_STATE(1664)] = 67606, + [SMALL_STATE(1665)] = 67625, + [SMALL_STATE(1666)] = 67644, + [SMALL_STATE(1667)] = 67663, + [SMALL_STATE(1668)] = 67682, + [SMALL_STATE(1669)] = 67701, + [SMALL_STATE(1670)] = 67720, + [SMALL_STATE(1671)] = 67739, + [SMALL_STATE(1672)] = 67758, + [SMALL_STATE(1673)] = 67777, + [SMALL_STATE(1674)] = 67796, + [SMALL_STATE(1675)] = 67811, + [SMALL_STATE(1676)] = 67830, + [SMALL_STATE(1677)] = 67849, + [SMALL_STATE(1678)] = 67866, + [SMALL_STATE(1679)] = 67885, + [SMALL_STATE(1680)] = 67904, + [SMALL_STATE(1681)] = 67919, + [SMALL_STATE(1682)] = 67936, + [SMALL_STATE(1683)] = 67955, + [SMALL_STATE(1684)] = 67974, + [SMALL_STATE(1685)] = 67993, + [SMALL_STATE(1686)] = 68012, + [SMALL_STATE(1687)] = 68031, + [SMALL_STATE(1688)] = 68046, + [SMALL_STATE(1689)] = 68065, + [SMALL_STATE(1690)] = 68082, + [SMALL_STATE(1691)] = 68101, + [SMALL_STATE(1692)] = 68120, + [SMALL_STATE(1693)] = 68139, + [SMALL_STATE(1694)] = 68158, + [SMALL_STATE(1695)] = 68177, + [SMALL_STATE(1696)] = 68194, + [SMALL_STATE(1697)] = 68213, + [SMALL_STATE(1698)] = 68232, + [SMALL_STATE(1699)] = 68249, + [SMALL_STATE(1700)] = 68268, + [SMALL_STATE(1701)] = 68287, + [SMALL_STATE(1702)] = 68306, + [SMALL_STATE(1703)] = 68325, + [SMALL_STATE(1704)] = 68344, + [SMALL_STATE(1705)] = 68363, + [SMALL_STATE(1706)] = 68382, + [SMALL_STATE(1707)] = 68401, + [SMALL_STATE(1708)] = 68420, + [SMALL_STATE(1709)] = 68439, + [SMALL_STATE(1710)] = 68458, + [SMALL_STATE(1711)] = 68477, + [SMALL_STATE(1712)] = 68496, + [SMALL_STATE(1713)] = 68515, + [SMALL_STATE(1714)] = 68534, + [SMALL_STATE(1715)] = 68553, + [SMALL_STATE(1716)] = 68572, + [SMALL_STATE(1717)] = 68591, + [SMALL_STATE(1718)] = 68610, + [SMALL_STATE(1719)] = 68629, + [SMALL_STATE(1720)] = 68648, + [SMALL_STATE(1721)] = 68667, + [SMALL_STATE(1722)] = 68686, + [SMALL_STATE(1723)] = 68705, + [SMALL_STATE(1724)] = 68721, + [SMALL_STATE(1725)] = 68737, + [SMALL_STATE(1726)] = 68753, + [SMALL_STATE(1727)] = 68769, + [SMALL_STATE(1728)] = 68785, + [SMALL_STATE(1729)] = 68801, + [SMALL_STATE(1730)] = 68817, + [SMALL_STATE(1731)] = 68833, + [SMALL_STATE(1732)] = 68849, + [SMALL_STATE(1733)] = 68865, + [SMALL_STATE(1734)] = 68879, + [SMALL_STATE(1735)] = 68895, + [SMALL_STATE(1736)] = 68911, + [SMALL_STATE(1737)] = 68927, + [SMALL_STATE(1738)] = 68943, + [SMALL_STATE(1739)] = 68957, + [SMALL_STATE(1740)] = 68973, + [SMALL_STATE(1741)] = 68989, + [SMALL_STATE(1742)] = 69005, + [SMALL_STATE(1743)] = 69021, + [SMALL_STATE(1744)] = 69037, + [SMALL_STATE(1745)] = 69051, + [SMALL_STATE(1746)] = 69067, + [SMALL_STATE(1747)] = 69083, + [SMALL_STATE(1748)] = 69097, + [SMALL_STATE(1749)] = 69113, + [SMALL_STATE(1750)] = 69129, + [SMALL_STATE(1751)] = 69145, + [SMALL_STATE(1752)] = 69161, + [SMALL_STATE(1753)] = 69177, + [SMALL_STATE(1754)] = 69193, + [SMALL_STATE(1755)] = 69209, + [SMALL_STATE(1756)] = 69225, + [SMALL_STATE(1757)] = 69241, + [SMALL_STATE(1758)] = 69257, + [SMALL_STATE(1759)] = 69273, + [SMALL_STATE(1760)] = 69289, + [SMALL_STATE(1761)] = 69305, + [SMALL_STATE(1762)] = 69321, + [SMALL_STATE(1763)] = 69337, + [SMALL_STATE(1764)] = 69353, + [SMALL_STATE(1765)] = 69369, + [SMALL_STATE(1766)] = 69383, + [SMALL_STATE(1767)] = 69399, + [SMALL_STATE(1768)] = 69413, + [SMALL_STATE(1769)] = 69427, + [SMALL_STATE(1770)] = 69443, + [SMALL_STATE(1771)] = 69459, + [SMALL_STATE(1772)] = 69473, + [SMALL_STATE(1773)] = 69489, + [SMALL_STATE(1774)] = 69503, + [SMALL_STATE(1775)] = 69517, + [SMALL_STATE(1776)] = 69533, + [SMALL_STATE(1777)] = 69549, + [SMALL_STATE(1778)] = 69565, + [SMALL_STATE(1779)] = 69579, + [SMALL_STATE(1780)] = 69595, + [SMALL_STATE(1781)] = 69609, + [SMALL_STATE(1782)] = 69625, + [SMALL_STATE(1783)] = 69641, + [SMALL_STATE(1784)] = 69657, + [SMALL_STATE(1785)] = 69673, + [SMALL_STATE(1786)] = 69689, + [SMALL_STATE(1787)] = 69705, + [SMALL_STATE(1788)] = 69721, + [SMALL_STATE(1789)] = 69737, + [SMALL_STATE(1790)] = 69751, + [SMALL_STATE(1791)] = 69767, + [SMALL_STATE(1792)] = 69781, + [SMALL_STATE(1793)] = 69797, + [SMALL_STATE(1794)] = 69813, + [SMALL_STATE(1795)] = 69829, + [SMALL_STATE(1796)] = 69845, + [SMALL_STATE(1797)] = 69861, + [SMALL_STATE(1798)] = 69877, + [SMALL_STATE(1799)] = 69893, + [SMALL_STATE(1800)] = 69909, + [SMALL_STATE(1801)] = 69923, + [SMALL_STATE(1802)] = 69939, + [SMALL_STATE(1803)] = 69955, + [SMALL_STATE(1804)] = 69971, + [SMALL_STATE(1805)] = 69987, + [SMALL_STATE(1806)] = 70003, + [SMALL_STATE(1807)] = 70017, + [SMALL_STATE(1808)] = 70033, + [SMALL_STATE(1809)] = 70047, + [SMALL_STATE(1810)] = 70061, + [SMALL_STATE(1811)] = 70077, + [SMALL_STATE(1812)] = 70090, + [SMALL_STATE(1813)] = 70103, + [SMALL_STATE(1814)] = 70116, + [SMALL_STATE(1815)] = 70129, + [SMALL_STATE(1816)] = 70142, + [SMALL_STATE(1817)] = 70155, + [SMALL_STATE(1818)] = 70168, + [SMALL_STATE(1819)] = 70181, + [SMALL_STATE(1820)] = 70194, + [SMALL_STATE(1821)] = 70207, + [SMALL_STATE(1822)] = 70220, + [SMALL_STATE(1823)] = 70233, + [SMALL_STATE(1824)] = 70246, + [SMALL_STATE(1825)] = 70259, + [SMALL_STATE(1826)] = 70272, + [SMALL_STATE(1827)] = 70285, + [SMALL_STATE(1828)] = 70298, + [SMALL_STATE(1829)] = 70311, + [SMALL_STATE(1830)] = 70324, + [SMALL_STATE(1831)] = 70337, + [SMALL_STATE(1832)] = 70350, + [SMALL_STATE(1833)] = 70363, + [SMALL_STATE(1834)] = 70376, + [SMALL_STATE(1835)] = 70389, + [SMALL_STATE(1836)] = 70402, + [SMALL_STATE(1837)] = 70415, + [SMALL_STATE(1838)] = 70428, + [SMALL_STATE(1839)] = 70441, + [SMALL_STATE(1840)] = 70454, + [SMALL_STATE(1841)] = 70467, + [SMALL_STATE(1842)] = 70480, + [SMALL_STATE(1843)] = 70493, + [SMALL_STATE(1844)] = 70506, + [SMALL_STATE(1845)] = 70519, + [SMALL_STATE(1846)] = 70532, + [SMALL_STATE(1847)] = 70545, + [SMALL_STATE(1848)] = 70558, + [SMALL_STATE(1849)] = 70571, + [SMALL_STATE(1850)] = 70584, + [SMALL_STATE(1851)] = 70597, + [SMALL_STATE(1852)] = 70610, + [SMALL_STATE(1853)] = 70623, + [SMALL_STATE(1854)] = 70636, + [SMALL_STATE(1855)] = 70649, + [SMALL_STATE(1856)] = 70662, + [SMALL_STATE(1857)] = 70675, + [SMALL_STATE(1858)] = 70688, + [SMALL_STATE(1859)] = 70701, + [SMALL_STATE(1860)] = 70714, + [SMALL_STATE(1861)] = 70727, + [SMALL_STATE(1862)] = 70740, + [SMALL_STATE(1863)] = 70753, + [SMALL_STATE(1864)] = 70766, + [SMALL_STATE(1865)] = 70779, + [SMALL_STATE(1866)] = 70792, + [SMALL_STATE(1867)] = 70805, + [SMALL_STATE(1868)] = 70818, + [SMALL_STATE(1869)] = 70831, + [SMALL_STATE(1870)] = 70844, + [SMALL_STATE(1871)] = 70857, + [SMALL_STATE(1872)] = 70870, + [SMALL_STATE(1873)] = 70883, + [SMALL_STATE(1874)] = 70896, + [SMALL_STATE(1875)] = 70909, + [SMALL_STATE(1876)] = 70922, + [SMALL_STATE(1877)] = 70935, + [SMALL_STATE(1878)] = 70948, + [SMALL_STATE(1879)] = 70961, + [SMALL_STATE(1880)] = 70974, + [SMALL_STATE(1881)] = 70987, + [SMALL_STATE(1882)] = 71000, + [SMALL_STATE(1883)] = 71013, + [SMALL_STATE(1884)] = 71026, + [SMALL_STATE(1885)] = 71039, + [SMALL_STATE(1886)] = 71052, + [SMALL_STATE(1887)] = 71065, + [SMALL_STATE(1888)] = 71078, + [SMALL_STATE(1889)] = 71091, + [SMALL_STATE(1890)] = 71104, + [SMALL_STATE(1891)] = 71117, + [SMALL_STATE(1892)] = 71130, + [SMALL_STATE(1893)] = 71143, + [SMALL_STATE(1894)] = 71156, + [SMALL_STATE(1895)] = 71169, + [SMALL_STATE(1896)] = 71182, + [SMALL_STATE(1897)] = 71195, + [SMALL_STATE(1898)] = 71208, + [SMALL_STATE(1899)] = 71221, + [SMALL_STATE(1900)] = 71234, + [SMALL_STATE(1901)] = 71247, + [SMALL_STATE(1902)] = 71260, + [SMALL_STATE(1903)] = 71273, + [SMALL_STATE(1904)] = 71286, + [SMALL_STATE(1905)] = 71299, + [SMALL_STATE(1906)] = 71312, + [SMALL_STATE(1907)] = 71325, + [SMALL_STATE(1908)] = 71338, + [SMALL_STATE(1909)] = 71351, + [SMALL_STATE(1910)] = 71364, + [SMALL_STATE(1911)] = 71377, + [SMALL_STATE(1912)] = 71390, + [SMALL_STATE(1913)] = 71403, + [SMALL_STATE(1914)] = 71416, + [SMALL_STATE(1915)] = 71429, + [SMALL_STATE(1916)] = 71442, + [SMALL_STATE(1917)] = 71455, + [SMALL_STATE(1918)] = 71468, + [SMALL_STATE(1919)] = 71481, + [SMALL_STATE(1920)] = 71494, + [SMALL_STATE(1921)] = 71507, + [SMALL_STATE(1922)] = 71520, + [SMALL_STATE(1923)] = 71533, + [SMALL_STATE(1924)] = 71546, + [SMALL_STATE(1925)] = 71559, + [SMALL_STATE(1926)] = 71572, + [SMALL_STATE(1927)] = 71585, + [SMALL_STATE(1928)] = 71598, + [SMALL_STATE(1929)] = 71611, + [SMALL_STATE(1930)] = 71624, + [SMALL_STATE(1931)] = 71637, + [SMALL_STATE(1932)] = 71650, + [SMALL_STATE(1933)] = 71663, + [SMALL_STATE(1934)] = 71676, + [SMALL_STATE(1935)] = 71689, + [SMALL_STATE(1936)] = 71702, + [SMALL_STATE(1937)] = 71715, + [SMALL_STATE(1938)] = 71728, + [SMALL_STATE(1939)] = 71741, + [SMALL_STATE(1940)] = 71754, + [SMALL_STATE(1941)] = 71767, + [SMALL_STATE(1942)] = 71780, + [SMALL_STATE(1943)] = 71793, + [SMALL_STATE(1944)] = 71806, + [SMALL_STATE(1945)] = 71819, + [SMALL_STATE(1946)] = 71832, + [SMALL_STATE(1947)] = 71845, + [SMALL_STATE(1948)] = 71858, + [SMALL_STATE(1949)] = 71871, + [SMALL_STATE(1950)] = 71884, + [SMALL_STATE(1951)] = 71897, + [SMALL_STATE(1952)] = 71910, + [SMALL_STATE(1953)] = 71923, + [SMALL_STATE(1954)] = 71936, + [SMALL_STATE(1955)] = 71949, + [SMALL_STATE(1956)] = 71962, + [SMALL_STATE(1957)] = 71975, + [SMALL_STATE(1958)] = 71988, + [SMALL_STATE(1959)] = 72001, + [SMALL_STATE(1960)] = 72014, + [SMALL_STATE(1961)] = 72027, + [SMALL_STATE(1962)] = 72040, + [SMALL_STATE(1963)] = 72053, + [SMALL_STATE(1964)] = 72066, + [SMALL_STATE(1965)] = 72079, + [SMALL_STATE(1966)] = 72092, + [SMALL_STATE(1967)] = 72105, + [SMALL_STATE(1968)] = 72118, + [SMALL_STATE(1969)] = 72131, + [SMALL_STATE(1970)] = 72144, + [SMALL_STATE(1971)] = 72157, + [SMALL_STATE(1972)] = 72170, + [SMALL_STATE(1973)] = 72183, + [SMALL_STATE(1974)] = 72196, + [SMALL_STATE(1975)] = 72209, + [SMALL_STATE(1976)] = 72222, + [SMALL_STATE(1977)] = 72235, + [SMALL_STATE(1978)] = 72248, + [SMALL_STATE(1979)] = 72261, + [SMALL_STATE(1980)] = 72274, + [SMALL_STATE(1981)] = 72287, + [SMALL_STATE(1982)] = 72300, + [SMALL_STATE(1983)] = 72313, + [SMALL_STATE(1984)] = 72326, + [SMALL_STATE(1985)] = 72339, + [SMALL_STATE(1986)] = 72352, + [SMALL_STATE(1987)] = 72365, + [SMALL_STATE(1988)] = 72378, + [SMALL_STATE(1989)] = 72391, + [SMALL_STATE(1990)] = 72404, + [SMALL_STATE(1991)] = 72417, + [SMALL_STATE(1992)] = 72430, + [SMALL_STATE(1993)] = 72443, + [SMALL_STATE(1994)] = 72456, + [SMALL_STATE(1995)] = 72469, + [SMALL_STATE(1996)] = 72482, + [SMALL_STATE(1997)] = 72495, + [SMALL_STATE(1998)] = 72508, + [SMALL_STATE(1999)] = 72521, + [SMALL_STATE(2000)] = 72534, + [SMALL_STATE(2001)] = 72547, + [SMALL_STATE(2002)] = 72560, + [SMALL_STATE(2003)] = 72573, + [SMALL_STATE(2004)] = 72586, + [SMALL_STATE(2005)] = 72599, + [SMALL_STATE(2006)] = 72612, + [SMALL_STATE(2007)] = 72625, + [SMALL_STATE(2008)] = 72638, + [SMALL_STATE(2009)] = 72651, + [SMALL_STATE(2010)] = 72664, + [SMALL_STATE(2011)] = 72677, + [SMALL_STATE(2012)] = 72690, + [SMALL_STATE(2013)] = 72703, + [SMALL_STATE(2014)] = 72716, + [SMALL_STATE(2015)] = 72729, + [SMALL_STATE(2016)] = 72742, + [SMALL_STATE(2017)] = 72755, + [SMALL_STATE(2018)] = 72768, + [SMALL_STATE(2019)] = 72781, + [SMALL_STATE(2020)] = 72794, + [SMALL_STATE(2021)] = 72807, + [SMALL_STATE(2022)] = 72820, + [SMALL_STATE(2023)] = 72833, + [SMALL_STATE(2024)] = 72846, + [SMALL_STATE(2025)] = 72859, + [SMALL_STATE(2026)] = 72872, + [SMALL_STATE(2027)] = 72885, + [SMALL_STATE(2028)] = 72898, + [SMALL_STATE(2029)] = 72911, + [SMALL_STATE(2030)] = 72924, + [SMALL_STATE(2031)] = 72937, + [SMALL_STATE(2032)] = 72950, + [SMALL_STATE(2033)] = 72963, + [SMALL_STATE(2034)] = 72976, + [SMALL_STATE(2035)] = 72989, + [SMALL_STATE(2036)] = 73002, + [SMALL_STATE(2037)] = 73015, + [SMALL_STATE(2038)] = 73028, + [SMALL_STATE(2039)] = 73041, + [SMALL_STATE(2040)] = 73054, + [SMALL_STATE(2041)] = 73067, + [SMALL_STATE(2042)] = 73080, + [SMALL_STATE(2043)] = 73093, + [SMALL_STATE(2044)] = 73106, + [SMALL_STATE(2045)] = 73119, + [SMALL_STATE(2046)] = 73132, + [SMALL_STATE(2047)] = 73145, + [SMALL_STATE(2048)] = 73158, + [SMALL_STATE(2049)] = 73171, + [SMALL_STATE(2050)] = 73184, + [SMALL_STATE(2051)] = 73197, + [SMALL_STATE(2052)] = 73210, + [SMALL_STATE(2053)] = 73223, + [SMALL_STATE(2054)] = 73236, + [SMALL_STATE(2055)] = 73249, + [SMALL_STATE(2056)] = 73262, + [SMALL_STATE(2057)] = 73275, + [SMALL_STATE(2058)] = 73288, + [SMALL_STATE(2059)] = 73301, + [SMALL_STATE(2060)] = 73314, + [SMALL_STATE(2061)] = 73318, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [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(975), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [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(955), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [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(504), - [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(1463), - [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(456), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [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(979), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [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(589), - [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(521), - [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(700), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 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, .production_id = 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(421), - [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(410), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 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, .production_id = 17), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(456), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1384), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1917), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1200), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1918), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1743), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(445), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(563), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(563), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(569), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(79), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(979), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1052), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(929), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1971), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1767), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1950), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(955), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(41), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(843), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(776), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(755), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(818), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1580), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1434), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1498), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1689), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1687), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(589), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1824), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1692), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(315), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2015), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(521), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1935), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1934), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1926), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1737), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1924), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(660), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(659), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1811), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1813), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1823), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1463), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(700), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1650), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1525), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(700), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(702), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [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(999), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [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(656), - [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(500), - [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(1391), - [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), - [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(981), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [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(586), - [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(506), - [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), SHIFT_REPEAT(454), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1391), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1969), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1202), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1949), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1757), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(229), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(981), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1035), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(930), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1734), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1764), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(586), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1793), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1735), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(403), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2018), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(506), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1822), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1820), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1954), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1765), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1806), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [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(423), - [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), SHIFT_REPEAT(453), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1389), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1837), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1193), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1838), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1711), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(284), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(999), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1077), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(902), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(40), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1695), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1694), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(656), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1842), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1690), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(317), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1980), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(500), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1845), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1848), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1846), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1723), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), 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), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(462), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1381), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2020), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1219), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2014), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1769), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(445), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(563), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(563), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(569), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(975), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1071), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(932), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1971), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1767), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1950), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(955), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(843), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(776), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(755), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(818), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1580), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1498), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1709), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1706), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(655), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1839), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1754), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(338), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1778), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(504), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1896), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1775), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1792), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(660), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(659), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1811), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1813), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1823), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1463), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1115), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1650), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1525), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1115), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(702), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(457), - [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(445), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(563), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(563), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(79), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(979), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1052), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(776), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1971), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1767), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1950), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(41), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(843), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(755), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(818), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1580), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1434), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1498), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1689), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1687), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1692), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(315), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2015), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(521), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1935), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1934), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1926), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1737), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1924), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(660), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(659), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1811), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1813), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1823), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1463), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(700), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1650), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1525), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(700), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(702), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [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), SHIFT_REPEAT(459), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(284), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(999), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1077), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1695), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1690), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(317), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1980), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(500), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1845), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1848), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1846), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1723), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2000), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(452), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(229), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(981), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1035), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1734), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1764), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1735), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(403), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2018), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1822), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1820), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1954), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1765), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1806), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(455), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(234), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(975), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1071), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1709), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1706), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1754), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(338), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1778), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(504), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1896), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1775), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1792), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1703), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), 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), SHIFT_REPEAT(460), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1741), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1740), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1999), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1688), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 27), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 27), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 85), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 85), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 35), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 35), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 111), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 111), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 100), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 100), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 91), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 91), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 90), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 90), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 62), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 62), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 29), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 29), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 28), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 28), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 64), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 64), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 76), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 76), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 81), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 81), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 61), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 61), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 73), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 73), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 72), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 72), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 71), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 71), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 67), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 67), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 94), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 94), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 95), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 95), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 97), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 97), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 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(753), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(753), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(445), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(563), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(563), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(569), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(229), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1691), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1734), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1764), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(586), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1793), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1735), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(403), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2018), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(506), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1822), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1820), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1954), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1765), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1806), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(660), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(659), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1811), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1813), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1823), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1463), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(700), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1650), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1525), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(700), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(702), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(760), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(234), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(33), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1709), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1706), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(655), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1839), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1754), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(338), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1778), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(504), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1896), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1775), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1792), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1703), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2007), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(761), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(284), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1741), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(596), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1937), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1740), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1999), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1688), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2000), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(748), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1695), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1694), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(656), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1842), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1690), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(317), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1980), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(500), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1845), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1848), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1846), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1723), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(758), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(79), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(41), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1689), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1687), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(589), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1824), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1692), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(315), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2015), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(521), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1935), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1934), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1926), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1737), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1924), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [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), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [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, .production_id = 1), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1701] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1038), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [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, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [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(472), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(841), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1973), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1161), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1884), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1730), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(755), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(776), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1971), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1733), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1950), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(843), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(818), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1580), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1434), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1498), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 84), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 105), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1974), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1201), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1938), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1702), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1948), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1206), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1941), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1722), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(666), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1525), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 42), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 19), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 42), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 19), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(463), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1415), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1958), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1239), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1959), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1753), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(447), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(577), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(107), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(997), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1056), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(956), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2054), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1727), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2052), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(979), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(23), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(831), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(777), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(761), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(860), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1601), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1471), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1528), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1784), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1754), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(666), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1853), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1781), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(392), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2056), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(523), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1944), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1943), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1967), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1751), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1888), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(602), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(604), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2036), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2035), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1475), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(719), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1607), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1595), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(719), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(724), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(464), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1408), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2010), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1243), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1990), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1803), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(213), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1001), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1054), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(960), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(27), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1755), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1745), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(649), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1837), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1752), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(394), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2059), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(524), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1923), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1922), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1995), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1743), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1889), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(462), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1405), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1878), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1227), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1879), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1782), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(303), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1005), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1062), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(936), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1776), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1783), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(554), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1911), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1772), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(381), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2021), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(533), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1914), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1926), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1887), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1746), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1986), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(469), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1412), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2058), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1212), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2057), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1725), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(447), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(573), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(573), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(577), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1009), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1052), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(928), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2054), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1727), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2052), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(979), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(831), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(777), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(761), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(860), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1601), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1471), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1528), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1729), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1730), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(600), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2045), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1731), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(347), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2042), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(531), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2041), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2039), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2038), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(602), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(604), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2036), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2035), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2034), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1475), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(719), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1607), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1595), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(719), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(724), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(461), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(447), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(573), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(573), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(577), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(107), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(997), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1056), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(777), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2054), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1727), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2052), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(831), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(761), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(860), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1601), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1471), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1528), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1784), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1754), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1781), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(392), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2056), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(523), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1944), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1943), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1967), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1751), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1888), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(602), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(604), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2036), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2035), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2034), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1475), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(719), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1607), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1595), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(719), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(724), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 10), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(467), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(303), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1005), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1062), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1776), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1783), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1772), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2021), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(533), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1914), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1926), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1887), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1746), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1986), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 10), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(468), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(213), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1001), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1054), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1755), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1745), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1752), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(394), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2059), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(524), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1923), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1922), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1995), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1743), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1889), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(465), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(190), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1009), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1052), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1729), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1730), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1731), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(347), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2042), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(531), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2041), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2039), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2038), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1777), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2044), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(460), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1758), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1761), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2040), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1734), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 29), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 29), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 49), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 49), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 30), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 30), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 49), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 49), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 9), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 9), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 64), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 64), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 30), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 30), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 83), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 83), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 87), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 87), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 102), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 102), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 37), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 37), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 31), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 31), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 78), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 78), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 66), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 66), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 93), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 93), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 9), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 9), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 33), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 33), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 113), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 113), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 57), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 57), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 92), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 92), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 42), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 42), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 25), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 25), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 19), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 19), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 18), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 18), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 19), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 19), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 19), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 19), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 63), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 63), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 35), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 35), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 5), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 5), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 38), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 38), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 20), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 20), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 96), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 96), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 97), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 97), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 99), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 99), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 43), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 43), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 41), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 41), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 40), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 40), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 75), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 75), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 42), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 42), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 74), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 74), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 73), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 73), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 70), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 70), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 69), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 69), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 59), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 59), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(776), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(447), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(573), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(573), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(577), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(303), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1786), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1776), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1783), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(554), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1911), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1772), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(381), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2021), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(533), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1914), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1926), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1887), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1746), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1986), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(602), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(604), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2036), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2035), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2034), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1475), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(719), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1607), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1595), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(719), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(724), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(764), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(107), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(23), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1784), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1754), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(666), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1853), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1781), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(392), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2056), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(523), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1944), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1943), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1967), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1751), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1888), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(769), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(213), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(27), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1755), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1745), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1837), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1752), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(394), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2059), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(524), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1923), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1995), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1743), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1889), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(770), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(190), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1729), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1730), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(600), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2045), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1731), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(347), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2042), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(531), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2041), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2039), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2038), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1777), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2044), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(763), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1758), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(652), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1948), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1761), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2040), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1734), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [1709] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1101), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 19), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 42), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 42), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 19), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(847), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2014), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1237), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1925), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1794), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(761), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(777), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2054), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1756), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2052), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(831), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(860), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1601), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1471), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1528), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 107), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 42), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 58), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 86), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 58), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1989), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1207), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1814), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1763), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2015), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1242), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1979), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1788), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(680), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1595), [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 129), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 129), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 120), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 120), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 119), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 119), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 109), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 109), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 125), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 125), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 124), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 124), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 108), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 108), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 88), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 88), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(755), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(776), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1971), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1733), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1950), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 69), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 69), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 106), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 106), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(841), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(755), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(776), - [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1971), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1733), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1950), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(843), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(818), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1580), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1434), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1498), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(750), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 70), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 70), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 96), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 96), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(785), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 80), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 80), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 26), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 26), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 80), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 80), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 78), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 78), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 26), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 26), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1038), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(834), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 73), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 73), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 79), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 79), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 79), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 79), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 97), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 97), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 72), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 72), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1971), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(1971), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), SHIFT(1971), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1971), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), SHIFT(1971), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1648), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(978), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2852] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1038), - [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 77), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 77), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1109), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1108), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 102), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 63), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 83), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 115), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 116), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 104), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 103), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 114), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(755), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1260), - [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1261), - [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1263), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1249), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(785), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(785), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(785), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(785), - [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1253), - [3428] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(785), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1258), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1239), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1967), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, .production_id = 34), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 40), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), - [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1316), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1971), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1767), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 110), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 22), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 40), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1610), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1167), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1890), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1769), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 32), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 40), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 110), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 40), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 22), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 22), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 22), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 110), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 22), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 22), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 92), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 92), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 112), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 112), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 32), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 35), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 92), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 92), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1610), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1413), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 112), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 112), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1971), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 92), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 92), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, .production_id = 34), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(588), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1970), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 112), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 112), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1524), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 72), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 72), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 73), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 73), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 75), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 97), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 97), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 74), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 92), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 112), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 98), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 93), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 32), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 118), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1337), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 65), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 107), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 101), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1418), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 117), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 107), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 86), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 86), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1408), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 117), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 122), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 48), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 22), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 127), SHIFT_REPEAT(1382), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 127), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 48), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1287), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 65), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1557), - [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1557), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1560), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1648), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1149), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 65), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1731), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(477), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 99), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 131), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(725), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 131), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 130), SHIFT_REPEAT(1877), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 130), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 86), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 32), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 128), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 118), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 121), - [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1028), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1749), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1205), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 126), - [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(498), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 123), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 86), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 121), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, .production_id = 113), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 72), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 97), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 73), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 72), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 73), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 72), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 41), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4658] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 73), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 97), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 97), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 97), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 72), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 73), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 41), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 41), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 73), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 40), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 72), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 41), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 97), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 122), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 122), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 89), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 89), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 121), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 121), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 60), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 60), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 110), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 110), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 111), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 111), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 131), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 131), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 127), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 127), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 126), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 126), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 90), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 90), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(761), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(777), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2054), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1756), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2052), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 39), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 39), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 71), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 71), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 59), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 59), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 108), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 108), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 47), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 47), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 13), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 13), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 14), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 14), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 6), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 6), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(847), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(761), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(777), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2054), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1756), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2052), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(831), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(860), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1601), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1471), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1528), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 47), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 47), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 6), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 6), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 6), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 6), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(768), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 27), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 27), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 27), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 27), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 1), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 1), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 55), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 55), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 98), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 98), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 72), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 72), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 28), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 28), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 15), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 15), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 54), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 54), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 28), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 28), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 56), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 56), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 15), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 15), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 82), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 82), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(831), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(856), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 26), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 26), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 52), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 52), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 80), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 80), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 55), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 55), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 27), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 27), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 56), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 56), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 54), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 54), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 82), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 82), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 16), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 16), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 15), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 15), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1101), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 28), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 28), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 9), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 9), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 27), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 27), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 16), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 16), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 15), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 15), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 9), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 9), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 28), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 28), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 61), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 61), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 44), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 44), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 43), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 43), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 1), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 1), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 1), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 1), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 81), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 81), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 74), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 74), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 42), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 42), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 19), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 19), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 75), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 75), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 99), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 99), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 81), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 81), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 42), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 42), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 44), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 44), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 19), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 19), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2054), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 52), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 52), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 52), SHIFT(2054), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 26), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 26), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 26), SHIFT(2054), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 80), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 80), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 80), SHIFT(2054), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), SHIFT(2054), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1706), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1014), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2872] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1101), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 79), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 79), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 36), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 36), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 1), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 1), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1114), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1116), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 14), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 14), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 46), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 65), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 118), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 117), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 116), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 106), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 105), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 104), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 85), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 84), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 1), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 1), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(761), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 15), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 15), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 32), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 32), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 15), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 15), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 6), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 6), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 44), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 15), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 15), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), SHIFT(831), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1260), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(831), + [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1261), + [3311] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(831), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 16), SHIFT(831), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 15), SHIFT(831), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 16), SHIFT(831), + [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 15), SHIFT(831), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(831), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(831), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(831), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1821), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 36), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 36), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, .production_id = 36), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 36), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 36), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 36), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 36), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 42), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1343), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2054), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 19), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 36), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 36), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1727), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 34), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 91), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 112), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 24), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 42), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 42), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 112), + [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1677), + [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1219), + [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1861), + [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1725), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 42), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 34), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 19), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 19), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 91), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 34), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 19), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 112), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 114), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 114), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 94), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 94), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 24), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 24), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 34), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 24), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 24), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 24), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 91), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 34), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 24), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 24), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1435), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 53), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 53), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 37), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 114), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 114), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 7), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 7), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 36), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 36), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 94), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 94), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 24), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 24), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1677), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(609), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1847), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 94), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 94), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 36), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 36), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 24), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 24), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 24), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 24), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 23), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 23), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2054), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, .production_id = 36), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 114), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 114), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 1), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 1), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 42), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 42), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 99), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 99), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 19), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 19), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 75), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 75), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1585), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 42), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 42), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 74), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 74), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 21), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 77), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 45), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 91), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 34), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 19), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 19), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 48), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 43), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 43), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 94), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 24), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 34), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 7), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 24), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 36), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 100), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 95), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 114), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 76), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 22), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 88), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 24), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1315), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 67), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 103), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1366), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 67), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 50), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 109), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 51), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 12), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 50), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1635), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1637), + [4045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1637), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 119), SHIFT_REPEAT(1425), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 119), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 109), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 120), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 1), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 119), SHIFT_REPEAT(1427), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 119), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 124), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 129), SHIFT_REPEAT(1409), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 129), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 88), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 133), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 133), + [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 132), SHIFT_REPEAT(2018), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 132), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 130), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 123), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1073), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 128), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1171), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 67), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 125), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 88), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 123), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 1), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 88), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 34), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(485), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1706), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1779), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 1), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 101), + [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(735), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1738), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1211), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(506), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 125), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, .production_id = 115), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 7), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 51), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 43), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 74), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 75), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 43), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 19), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 42), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 99), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 43), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 74), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 43), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 75), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 43), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 99), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 74), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 74), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 75), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 75), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 74), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 75), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 99), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 99), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 99), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4854] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, .production_id = 4), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, .production_id = 17), }; #ifdef __cplusplus extern "C" { #endif -#ifdef TREE_SITTER_HIDE_SYMBOLS -#define TS_PUBLIC -#elif defined(_WIN32) -#define TS_PUBLIC __declspec(dllexport) -#else -#define TS_PUBLIC __attribute__((visibility("default"))) +#ifdef _WIN32 +#define extern __declspec(dllexport) #endif -TS_PUBLIC const TSLanguage *tree_sitter_c() { +extern const TSLanguage *tree_sitter_c(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde..2b14ac1 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,8 +13,9 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -#ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -129,16 +130,9 @@ struct TSLanguage { * Lexer Macros */ -#ifdef _MSC_VER -#define UNUSED __pragma(warning(suppress : 4101)) -#else -#define UNUSED __attribute__((unused)) -#endif - #define START_LEXER() \ bool result = false; \ bool skip = false; \ - UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -172,7 +166,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) +#define SMALL_STATE(id) id - LARGE_STATE_COUNT #define STATE(id) id @@ -182,7 +176,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value) \ + .state = state_value \ } \ }} @@ -190,7 +184,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value), \ + .state = state_value, \ .repetition = true \ } \ }} diff --git a/test/corpus/crlf.txt b/test/corpus/crlf.txt index 9673cae..f11ff1e 100644 --- a/test/corpus/crlf.txt +++ b/test/corpus/crlf.txt @@ -1,13 +1,13 @@ -============================================ -Line comments with escaped CRLF line endings -============================================ - -// hello \ - this is still a comment -this_is_not a_comment; - ---- - -(translation_unit - (comment) - (declaration (type_identifier) (identifier))) +============================================ +Line comments with escaped CRLF line endings +============================================ + +// hello \ + this is still a comment +this_is_not a_comment; + +--- + +(translation_unit + (comment) + (declaration (type_identifier) (identifier)))